aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2020-02-13 21:58:16 -0800
committerFangrui Song <maskray@google.com>2020-02-13 22:08:55 -0800
commitbcd24b2d43bded4959338972cdc4c2c960b0a965 (patch)
tree0c2effa2b2004f52117428c457c8b7d932ea7cb7 /llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
parent16bf89267e5ac01d2b512ce784f23640a82de821 (diff)
downloadllvm-bcd24b2d43bded4959338972cdc4c2c960b0a965.zip
llvm-bcd24b2d43bded4959338972cdc4c2c960b0a965.tar.gz
llvm-bcd24b2d43bded4959338972cdc4c2c960b0a965.tar.bz2
[AsmPrinter][MCStreamer] De-capitalize EmitInstruction and EmitCFI*
Diffstat (limited to 'llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp')
-rw-r--r--llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp b/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
index edd2090..e98887e 100644
--- a/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
+++ b/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
@@ -839,7 +839,7 @@ public:
if (Op0.getImm() == -1)
Op0.setImm(Align);
}
- Out.EmitInstruction(Inst, getSTI());
+ Out.emitInstruction(Inst, getSTI());
if (CurrentState == EndFunction) {
onEndOfFunction();
} else {