diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-10 07:20:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-10 07:20:42 +0000 |
commit | 71c30c164f5545a7ddb675b14a78c11ebf764b88 (patch) | |
tree | 42ce5e908a07a7be95d6b2e8f505cae2544c74e6 /llvm/lib/Target/TargetLoweringObjectFile.cpp | |
parent | ba2e6c6b73b3a439eccb42121c590cf84089df20 (diff) | |
download | llvm-71c30c164f5545a7ddb675b14a78c11ebf764b88.zip llvm-71c30c164f5545a7ddb675b14a78c11ebf764b88.tar.gz llvm-71c30c164f5545a7ddb675b14a78c11ebf764b88.tar.bz2 |
move three lowering hooks from MAI to TLOF and make one of them
semantic instead of syntactic. This completes MCization of
darwin/x86[-64]!
llvm-svn: 98145
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLoweringObjectFile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp index 421f1e8..8c12039 100644 --- a/llvm/lib/Target/TargetLoweringObjectFile.cpp +++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp @@ -56,6 +56,10 @@ TargetLoweringObjectFile::TargetLoweringObjectFile() : Ctx(0) { DwarfARangesSection = 0; DwarfRangesSection = 0; DwarfMacroInfoSection = 0; + + IsFunctionEHSymbolGlobal = false; + IsFunctionEHFrameSymbolPrivate = true; + SupportsWeakOmittedEHFrame = true; } TargetLoweringObjectFile::~TargetLoweringObjectFile() { |