diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-09-11 17:20:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-09-11 17:20:55 +0000 |
commit | ef4a661725716c60b49c40eed5225cac52f877e9 (patch) | |
tree | 6764d809a3b2b39aba0e03a8c8c29478a7018217 /lib/Target/X86/X86TargetAsmInfo.cpp | |
parent | 95bb69acbcec9a2e162875e7a940ccede90fd3f9 (diff) |
Add a bool to indicate if we should set the "indirect encoding" bit in the Dwarf
information for EH.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetAsmInfo.cpp')
-rw-r--r-- | lib/Target/X86/X86TargetAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp index 414782ee4d..05cf2bfdab 100644 --- a/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/lib/Target/X86/X86TargetAsmInfo.cpp @@ -70,6 +70,7 @@ X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) { } PersonalityPrefix = "L"; PersonalitySuffix = "$non_lazy_ptr"; + NeedsIndirectEncoding = true; InlineAsmStart = "# InlineAsm Start"; InlineAsmEnd = "# InlineAsm End"; SetDirective = "\t.set"; |