aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2013-09-25 09:36:11 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2013-09-25 09:36:11 +0000
commit8ba3f9c9008223136207295b48b53c8aefffa178 (patch)
tree1cc51252a77b885d063384aa4c5f50a43fd3b324 /include/llvm/MC
parent63799f6febc91ebec0d308737bfd1c659e4c24b7 (diff)
downloadexternal_llvm-8ba3f9c9008223136207295b48b53c8aefffa178.zip
external_llvm-8ba3f9c9008223136207295b48b53c8aefffa178.tar.gz
external_llvm-8ba3f9c9008223136207295b48b53c8aefffa178.tar.bz2
MC: Remove vestigial PCSymbol field from AsmInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC')
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 186a8f6..f5acd17 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -93,10 +93,6 @@ namespace llvm {
/// this value. Factored out in .debug_frame and .debug_line.
unsigned MinInstAlignment; // Defaults to 1.
- /// PCSymbol - The symbol used to represent the current PC. Used in PC
- /// relative expressions.
- const char *PCSymbol; // Defaults to "$".
-
/// SeparatorString - This string, if specified, is used to separate
/// instructions from each other when on the same line.
const char *SeparatorString; // Defaults to ';'
@@ -425,9 +421,6 @@ namespace llvm {
unsigned getMinInstAlignment() const {
return MinInstAlignment;
}
- const char *getPCSymbol() const {
- return PCSymbol;
- }
const char *getSeparatorString() const {
return SeparatorString;
}