summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGException.cpp
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2010-01-01 03:20:32 +0000
committerMike Stump <mrs@apple.com>2010-01-01 03:20:32 +0000
commit9d44fdb397d3a1c6ff4f74bbfdfdade6534b85f5 (patch)
tree93a837715433b9e4f785526cbc9f92bd80b714b5 /clang/lib/CodeGen/CGException.cpp
parent5ee041873b6c525bf43758880b08437ad2d572cb (diff)
downloadbcm5719-llvm-9d44fdb397d3a1c6ff4f74bbfdfdade6534b85f5.tar.gz
bcm5719-llvm-9d44fdb397d3a1c6ff4f74bbfdfdade6534b85f5.zip
Fix last patch, catch of reference to non-pointer.
llvm-svn: 92386
Diffstat (limited to 'clang/lib/CodeGen/CGException.cpp')
-rw-r--r--clang/lib/CodeGen/CGException.cpp22
1 files changed, 12 insertions, 10 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp
index 8c1a6d28ff8..bd0461fd280 100644
--- a/clang/lib/CodeGen/CGException.cpp
+++ b/clang/lib/CodeGen/CGException.cpp
@@ -207,20 +207,21 @@ static void CopyObject(CodeGenFunction &CGF, const Expr *E,
// CopyObject - Utility to copy an object. Calls copy constructor as necessary.
// N is casted to the right type.
static void CopyObject(CodeGenFunction &CGF, QualType ObjectType,
- bool WasPointer, bool WasReference, llvm::Value *E,
- llvm::Value *N) {
+ bool WasPointer, bool WasPointerReference,
+ llvm::Value *E, llvm::Value *N) {
// Store the throw exception in the exception object.
if (WasPointer || !CGF.hasAggregateLLVMType(ObjectType)) {
llvm::Value *Value = E;
if (!WasPointer)
Value = CGF.Builder.CreateLoad(Value);
const llvm::Type *ValuePtrTy = Value->getType()->getPointerTo(0);
- if (WasReference) {
+ if (WasPointerReference) {
llvm::Value *Tmp = CGF.CreateTempAlloca(Value->getType(), "catch.param");
CGF.Builder.CreateStore(Value, Tmp);
Value = Tmp;
- } else
- N = CGF.Builder.CreateBitCast(N, ValuePtrTy);
+ ValuePtrTy = Value->getType()->getPointerTo(0);
+ }
+ N = CGF.Builder.CreateBitCast(N, ValuePtrTy);
CGF.Builder.CreateStore(Value, N);
} else {
const llvm::Type *Ty = CGF.ConvertType(ObjectType)->getPointerTo(0);
@@ -570,11 +571,12 @@ void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
QualType CatchType = CatchParam->getType().getNonReferenceType();
setInvokeDest(TerminateHandler);
bool WasPointer = true;
- bool WasReference = false;
+ bool WasPointerReference = false;
CatchType = CGM.getContext().getCanonicalType(CatchType);
- if (isa<ReferenceType>(CatchParam->getType()))
- WasReference = true;
- if (!CatchType.getTypePtr()->isPointerType()) {
+ if (CatchType.getTypePtr()->isPointerType()) {
+ if (isa<ReferenceType>(CatchParam->getType()))
+ WasPointerReference = true;
+ } else {
if (!isa<ReferenceType>(CatchParam->getType()))
WasPointer = false;
CatchType = getContext().getPointerType(CatchType);
@@ -585,7 +587,7 @@ void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
// cleanup doesn't start until after the ctor completes, use a decl
// init?
CopyObject(*this, CatchParam->getType().getNonReferenceType(),
- WasPointer, WasReference, ExcObject,
+ WasPointer, WasPointerReference, ExcObject,
GetAddrOfLocalVar(CatchParam));
setInvokeDest(MatchHandler);
}
OpenPOWER on IntegriCloud