Add support for binding references to scalar rvalues.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anders Carlsson 2009-05-20 01:03:17 +00:00
Родитель 4bbab92167
Коммит e04d1c77ae
2 изменённых файлов: 18 добавлений и 3 удалений

Просмотреть файл

@ -78,6 +78,14 @@ RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
return RValue::get(LV.getAddress());
}
if (!hasAggregateLLVMType(E->getType())) {
// Make a temporary variable that we can bind the reference to.
llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
"reftmp");
EmitStoreOfScalar(EmitScalarExpr(E), Temp, false, E->getType());
return RValue::get(Temp);
}
CGM.ErrorUnsupported(E, "reference binding");
return GetUndefRValue(DestType);
}

Просмотреть файл

@ -19,25 +19,32 @@ void t3() {
struct C {};
void f(const bool&);
void f(const int&);
void f(const _Complex int&);
void f(const C&);
void test_bool() {
bool a = true;
f(a);
f(true);
}
void test_scalar() {
int a = 10;
f(a);
f(10);
}
void test_complex() {
_Complex int a = 10i;
f(a);
}
void test_aggregate() {
C c;
f(c);
}