summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-02-19 00:29:36 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-02-19 00:29:36 +0000
commitf0e7c87e56df43b012667762e2fb3e1b9edb766d (patch)
treefd1414f5284a0f86598b4cfe61ea30385329a979 /include
parentc94fa4c759467b12abb63ec9d8597bc883e37281 (diff)
downloadllvm-f0e7c87e56df43b012667762e2fb3e1b9edb766d.tar.gz
llvm-f0e7c87e56df43b012667762e2fb3e1b9edb766d.tar.bz2
llvm-f0e7c87e56df43b012667762e2fb3e1b9edb766d.tar.xz
Use the same encoding for EH stuff uniformly on all MachO targets.
This hopefulyl should unbreak EH on PPC/Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/TargetLoweringObjectFileImpl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
index c5aa626a46..3d99fa76e0 100644
--- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
@@ -171,6 +171,11 @@ public:
virtual const MCExpr *
getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
MachineModuleInfo *MMI, unsigned Encoding) const;
+
+ virtual unsigned getPersonalityEncoding() const;
+ virtual unsigned getLSDAEncoding() const;
+ virtual unsigned getFDEEncoding() const;
+ virtual unsigned getTTypeEncoding() const;
};