summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenFunction.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-23 17:26:39 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-23 17:26:39 +0000
commit1234749853d68a24cc0de6d7ce580fe05807341b (patch)
tree130304024d74f54cec2d7a49812ae3f323e2bac2 /clang/lib/CodeGen/CodeGenFunction.cpp
parente591411fd69bb669a5aefe414bb81479ddb1cbb3 (diff)
downloadbcm5719-llvm-1234749853d68a24cc0de6d7ce580fe05807341b.tar.gz
bcm5719-llvm-1234749853d68a24cc0de6d7ce580fe05807341b.zip
Add low level support for generating invoke instead of calls.
- No functionality change. llvm-svn: 65325
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp
index 9175d16063c..ccd961ac283 100644
--- a/clang/lib/CodeGen/CodeGenFunction.cpp
+++ b/clang/lib/CodeGen/CodeGenFunction.cpp
@@ -25,7 +25,7 @@ using namespace CodeGen;
CodeGenFunction::CodeGenFunction(CodeGenModule &cgm)
: CGM(cgm), Target(CGM.getContext().Target), DebugInfo(0), SwitchInsn(0),
- CaseRangeBlock(0) {
+ CaseRangeBlock(0), InvokeDest(0) {
LLVMIntTy = ConvertType(getContext().IntTy);
LLVMPointerWidth = Target.getPointerWidth(0);
OpenPOWER on IntegriCloud