summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCAsmInfo.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-04-28 21:04:39 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-04-28 21:04:39 +0000
commita0057ca13f06b8de08483c3e3a143a7236c67097 (patch)
tree04eb697e506be729fd5e59701b9088d1d1a33b10 /include/llvm/MC/MCAsmInfo.h
parent77562c74e5709ea6bb5756074fa4f450171a25a0 (diff)
downloadllvm-a0057ca13f06b8de08483c3e3a143a7236c67097.tar.gz
llvm-a0057ca13f06b8de08483c3e3a143a7236c67097.tar.bz2
llvm-a0057ca13f06b8de08483c3e3a143a7236c67097.tar.xz
Add the getExprForFDESymbol method that responsible for computing the
expressions used in the FDE to refer to symbols. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAsmInfo.h')
-rw-r--r--include/llvm/MC/MCAsmInfo.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 0ea9d01f68..566535ebac 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -328,6 +328,9 @@ namespace llvm {
getExprForPersonalitySymbol(const MCSymbol *Sym,
MCStreamer &Streamer) const;
+ virtual const MCExpr *
+ getExprForFDESymbol(const MCSymbol *Sym, MCStreamer &Streamer) const;
+
bool usesSunStyleELFSectionSwitchSyntax() const {
return SunStyleELFSectionSwitchSyntax;
}