aboutsummaryrefslogtreecommitdiff
path: root/llvm/include
diff options
context:
space:
mode:
authorEric Astor <epastor@google.com>2020-09-23 13:57:43 -0400
committerEric Astor <epastor@google.com>2020-09-23 13:59:34 -0400
commitb901b6ab173ac77edfe97e0dbd138410b940b4bc (patch)
treee7153606927dd90d849746a215f705d15756bcd7 /llvm/include
parent7a3c643c35590df67716dfe3e3c60195ae385e43 (diff)
downloadllvm-b901b6ab173ac77edfe97e0dbd138410b940b4bc.zip
llvm-b901b6ab173ac77edfe97e0dbd138410b940b4bc.tar.gz
llvm-b901b6ab173ac77edfe97e0dbd138410b940b4bc.tar.bz2
Revert "[ms] [llvm-ml] Add support for .radix directive, and accept all radix specifiers"
This reverts commit 5dd1b6d612655c9006ba97a8b6487ded80719b48.
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/MC/MCParser/MCAsmLexer.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/MC/MCParser/MCAsmLexer.h b/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
index a9481a0..e89abea 100644
--- a/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
+++ b/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
@@ -50,7 +50,6 @@ protected: // Can only create subclasses.
bool AllowAtInIdentifier;
bool IsAtStartOfStatement = true;
bool LexMasmIntegers = false;
- unsigned DefaultRadix = 10;
AsmCommentConsumer *CommentConsumer = nullptr;
MCAsmLexer();
@@ -144,9 +143,6 @@ public:
bool getAllowAtInIdentifier() { return AllowAtInIdentifier; }
void setAllowAtInIdentifier(bool v) { AllowAtInIdentifier = v; }
- unsigned getDefaultRadix() const { return DefaultRadix; }
- void setDefaultRadix(unsigned Radix) { DefaultRadix = Radix; }
-
void setCommentConsumer(AsmCommentConsumer *CommentConsumer) {
this->CommentConsumer = CommentConsumer;
}