diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-09-23 16:20:01 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-09-23 16:20:01 +0000 |
commit | 739aa12b79bcf96f20a106285a939496d3ac15ba (patch) | |
tree | da1a582ad5b6871c350e6c5698a79b4440eea92e /clang/lib/CodeGen/CodeGenModule.h | |
parent | c07dc68852832a73c21ed55e02bccd4cd28713f1 (diff) | |
download | bcm5719-llvm-739aa12b79bcf96f20a106285a939496d3ac15ba.tar.gz bcm5719-llvm-739aa12b79bcf96f20a106285a939496d3ac15ba.zip |
Revert "Don't use comdats for initializers on platforms that don't support it"
On further investigation, COMDATs should work with .ctors, and the issue
I was hitting probably reproduces with .init_array.
This reverts commit r218287.
llvm-svn: 218313
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index d62d68a408a..afd5b5d404f 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -601,7 +601,6 @@ public: const TargetInfo &getTarget() const { return Target; } const llvm::Triple &getTriple() const; bool supportsCOMDAT() const; - bool supportsCOMDATInitializers() const; CGCXXABI &getCXXABI() const { return *ABI; } llvm::LLVMContext &getLLVMContext() { return VMContext; } |