diff options
author | Thomas Lively <tlively@google.com> | 2019-01-08 06:25:55 +0000 |
---|---|---|
committer | Thomas Lively <tlively@google.com> | 2019-01-08 06:25:55 +0000 |
commit | 6a87ddac9a056c9a7b75eb630908aa356d8a1028 (patch) | |
tree | 23cc1254457e558cb7c6ea53d8601517fea5c34d /llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp | |
parent | 616ed1722111a3dcb5d339fe6ce8a5f6d69bdc80 (diff) | |
download | llvm-6a87ddac9a056c9a7b75eb630908aa356d8a1028.zip llvm-6a87ddac9a056c9a7b75eb630908aa356d8a1028.tar.gz llvm-6a87ddac9a056c9a7b75eb630908aa356d8a1028.tar.bz2 |
[WebAssembly] Massive instruction renaming
Summary:
An automated renaming of all the instructions listed at
https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329
as well as some similarly-named identifiers.
Reviewers: aheejin, dschuff, aardappel
Subscribers: sbc100, jgravelle-google, eraman, sunfish, jfb, llvm-commits
Differential Revision: https://reviews.llvm.org/D56338
llvm-svn: 350609
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp index 05bd592..db8cd81 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp @@ -326,7 +326,7 @@ void WebAssemblyPassConfig::addPreEmitPass() { addPass(createWebAssemblyRegColoring()); } - // Insert explicit get_local and set_local operators. + // Insert explicit local.get and local.set operators. addPass(createWebAssemblyExplicitLocals()); // Sort the blocks of the CFG into topological order, a prerequisite for |