diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-06 07:07:44 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-06 07:07:44 +0000 |
commit | 85465e608da9720a9700308d1b1c269d8337cf52 (patch) | |
tree | 0f6a8394a585c96da8e27521eb49646f85fedfef /clang/lib/CodeGen/CodeGenModule.h | |
parent | b861fe5df292916b4d1794422617ebbb09a5d25d (diff) | |
download | bcm5719-llvm-85465e608da9720a9700308d1b1c269d8337cf52.tar.gz bcm5719-llvm-85465e608da9720a9700308d1b1c269d8337cf52.zip |
Remove nondeterminism introduced in r178950.
llvm-svn: 178952
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index ccac4371c49..6bc44563fae 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -310,6 +310,7 @@ class CodeGenModule : public CodeGenTypeCache { typedef llvm::DenseMap<IdentifierInfo *, llvm::GlobalValue *> StaticExternCMap; StaticExternCMap StaticExternCValues; + std::vector<IdentifierInfo*> StaticExternCIdents; /// CXXGlobalInits - Global variables with initializers that need to run /// before main. |