summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-05-01 04:49:54 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-05-01 04:49:54 +0000
commit5426a9ee37667660935d80841c5392d78e254318 (patch)
tree618d555830cb9f02a2a0e45956a44aa5be69f494 /include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
parentc35280647b8a9d41492586205867913ed2cb916f (diff)
downloadllvm-5426a9ee37667660935d80841c5392d78e254318.tar.gz
llvm-5426a9ee37667660935d80841c5392d78e254318.tar.bz2
llvm-5426a9ee37667660935d80841c5392d78e254318.tar.xz
GCC uses a different encoding of pointers in the FDE when using
-fno-dwarf2-cfi-asm. Implement the same behavior. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/TargetLoweringObjectFileImpl.h')
-rw-r--r--include/llvm/CodeGen/TargetLoweringObjectFileImpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
index 493526aa7f..829f580df3 100644
--- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
@@ -188,7 +188,7 @@ public:
virtual unsigned getPersonalityEncoding() const;
virtual unsigned getLSDAEncoding() const;
- virtual unsigned getFDEEncoding() const;
+ virtual unsigned getFDEEncoding(bool CFI) const;
virtual unsigned getTTypeEncoding() const;
};