diff options
author | Sean Silva <chisophugis@gmail.com> | 2015-02-05 00:58:51 +0000 |
---|---|---|
committer | Sean Silva <chisophugis@gmail.com> | 2015-02-05 00:58:51 +0000 |
commit | 0e1fe184c8abcd4193ea678497978731f8289db0 (patch) | |
tree | 95136917c76eda60d6e04ef970921792f3e83f51 /llvm/lib/MC/MCValue.cpp | |
parent | 16f9a6b43dff53f8a0fe87a9ab1309b8474f3dd2 (diff) | |
download | llvm-0e1fe184c8abcd4193ea678497978731f8289db0.zip llvm-0e1fe184c8abcd4193ea678497978731f8289db0.tar.gz llvm-0e1fe184c8abcd4193ea678497978731f8289db0.tar.bz2 |
[MC] Remove various unused MCAsmInfo parameters.
llvm-svn: 228244
Diffstat (limited to 'llvm/lib/MC/MCValue.cpp')
-rw-r--r-- | llvm/lib/MC/MCValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCValue.cpp b/llvm/lib/MC/MCValue.cpp index 9dfc56e..53654bd 100644 --- a/llvm/lib/MC/MCValue.cpp +++ b/llvm/lib/MC/MCValue.cpp @@ -15,7 +15,7 @@ using namespace llvm; -void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { +void MCValue::print(raw_ostream &OS) const { if (isAbsolute()) { OS << getConstant(); return; |