From a5002106fbe5563aa59eba007416074d5b1ffecf Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 5 Feb 2010 21:10:36 +0000 Subject: Revert r95393, which broke Clang's self-host. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95430 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGExpr.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/CGExpr.cpp') diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 2684eb6e3c..7fb79e9585 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -549,13 +549,14 @@ RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) { if (LV.isSimple()) { llvm::Value *Ptr = LV.getAddress(); + const llvm::Type *EltTy = + cast(Ptr->getType())->getElementType(); // Simple scalar l-value. - if (!CodeGenFunction::hasAggregateLLVMType(ExprType)) + if (EltTy->isSingleValueType()) return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(), ExprType)); - // FIXME: This case shouldn't be necessary? assert(ExprType->isFunctionType() && "Unknown scalar value"); return RValue::get(Ptr); } -- cgit v1.2.3-70-g09d2