diff options
author | Anders Carlsson <andersca@mac.com> | 2010-06-08 22:30:17 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-06-08 22:30:17 +0000 |
commit | 9eb101c5d39054e3b6d7c67150545156aaf77681 (patch) | |
tree | 4e0234508812b1229a5fbcfbf81a998235709b6f /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 282bc10eaad88a50a0cebbf827b2ddcf76c22d27 (diff) | |
download | bcm5719-llvm-9eb101c5d39054e3b6d7c67150545156aaf77681.tar.gz bcm5719-llvm-9eb101c5d39054e3b6d7c67150545156aaf77681.zip |
Rename __tcf_ to __cxx_global_array_dtor. Remove the UniqueAggreDestructorCount from CodeGenFunction and let LLVM handle uniquing the internal functions instead.
llvm-svn: 105648
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 73de0fd7738..af062356f65 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -31,8 +31,7 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) DebugInfo(0), IndirectBranch(0), SwitchInsn(0), CaseRangeBlock(0), InvokeDest(0), CXXThisDecl(0), CXXThisValue(0), CXXVTTDecl(0), CXXVTTValue(0), - ConditionalBranchLevel(0), TerminateHandler(0), TrapBB(0), - UniqueAggrDestructorCount(0) { + ConditionalBranchLevel(0), TerminateHandler(0), TrapBB(0) { LLVMIntTy = ConvertType(getContext().IntTy); LLVMPointerWidth = Target.getPointerWidth(0); Exceptions = getContext().getLangOptions().Exceptions; |