diff options
author | Eric Christopher <echristo@gmail.com> | 2014-01-28 00:49:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-01-28 00:49:26 +0000 |
commit | 2037caf8b9fe65d33624d5c583fa5d374852e40c (patch) | |
tree | fc3fa1dadb8565986875f763d544212e4d9f2457 /llvm/lib/Target/TargetLoweringObjectFile.cpp | |
parent | 59baee8451795a45a95c2576c7ebbb8f2ae19392 (diff) | |
download | bcm5719-llvm-2037caf8b9fe65d33624d5c583fa5d374852e40c.tar.gz bcm5719-llvm-2037caf8b9fe65d33624d5c583fa5d374852e40c.zip |
Revert r199871 and replace it with a simple check in the debug info
code to see if we're emitting a function into a non-default
text section. This is still a less-than-ideal solution, but more
contained than r199871 to determine whether or not we're emitting
code into an array of comdat sections.
llvm-svn: 200269
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLoweringObjectFile.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp index 8d73a3ab347..b62577e0801 100644 --- a/llvm/lib/Target/TargetLoweringObjectFile.cpp +++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp @@ -265,7 +265,7 @@ SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV, /// be passed external (or available externally) globals. const MCSection *TargetLoweringObjectFile:: SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang, - TargetMachine &TM) const { + const TargetMachine &TM) const { // Select section name. if (GV->hasSection()) return getExplicitSectionGlobal(GV, Kind, Mang, TM); @@ -277,9 +277,11 @@ SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang, // Lame default implementation. Calculate the section name for global. -const MCSection *TargetLoweringObjectFile::SelectSectionForGlobal( - const GlobalValue *GV, SectionKind Kind, Mangler *Mang, - TargetMachine &TM) const { +const MCSection * +TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV, + SectionKind Kind, + Mangler *Mang, + const TargetMachine &TM) const{ assert(!Kind.isThreadLocal() && "Doesn't support TLS"); if (Kind.isText()) |