aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-02-27 01:05:51 +0000
committerBill Wendling <isanbard@gmail.com>2010-02-27 01:05:51 +0000
commitd273e99db7f6b381d7032a7e5420a9a2e8da9342 (patch)
tree3963121133f89cf4fae99cde6f36ffa852c85454 /lib/CodeGen/TargetLoweringObjectFileImpl.cpp
parent37d4195ded33d70c309832200223eb03938c476c (diff)
downloadexternal_llvm-d273e99db7f6b381d7032a7e5420a9a2e8da9342.zip
external_llvm-d273e99db7f6b381d7032a7e5420a9a2e8da9342.tar.gz
external_llvm-d273e99db7f6b381d7032a7e5420a9a2e8da9342.tar.bz2
The TType is always absptr on Mach-O...at least for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetLoweringObjectFileImpl.cpp')
-rw-r--r--lib/CodeGen/TargetLoweringObjectFileImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
index 803b900..47164f7 100644
--- a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
+++ b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
@@ -779,7 +779,7 @@ unsigned TargetLoweringObjectFileMachO::getFDEEncoding() const {
}
unsigned TargetLoweringObjectFileMachO::getTTypeEncoding() const {
- return DW_EH_PE_indirect | DW_EH_PE_pcrel | DW_EH_PE_sdata4;
+ return DW_EH_PE_absptr;
}
//===----------------------------------------------------------------------===//