diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-12-10 02:21:21 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-12-10 02:21:21 +0000 |
commit | d5bc94e2eb728d995b31a18e16fe5fc359fe7047 (patch) | |
tree | b29bdfdf4ca8148ab031bc379198d69e2afa55ad /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 3c674cf804920683cd144fa4dcdffdc78e474e93 (diff) | |
download | bcm5719-llvm-d5bc94e2eb728d995b31a18e16fe5fc359fe7047.tar.gz bcm5719-llvm-d5bc94e2eb728d995b31a18e16fe5fc359fe7047.zip |
Get rid of static variable.
llvm-svn: 91041
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 18442bb1590..26964529ea6 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -31,7 +31,8 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) DebugInfo(0), IndirectBranch(0), SwitchInsn(0), CaseRangeBlock(0), InvokeDest(0), CXXThisDecl(0), CXXVTTDecl(0), - ConditionalBranchLevel(0), TerminateHandler(0) { + ConditionalBranchLevel(0), TerminateHandler(0), + UniqueAggrDestructorCount(0) { LLVMIntTy = ConvertType(getContext().IntTy); LLVMPointerWidth = Target.getPointerWidth(0); Exceptions = getContext().getLangOptions().Exceptions; |