[llvm] r253072 - [WebAssembly] Rename the Const instructions to be upper-case too.

Dan Gohman via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 13 12:27:45 PST 2015


Author: djg
Date: Fri Nov 13 14:27:45 2015
New Revision: 253072

URL: http://llvm.org/viewvc/llvm-project?rev=253072&view=rev
Log:
[WebAssembly] Rename the Const instructions to be upper-case too.

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInfo.td

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInfo.td?rev=253072&r1=253071&r2=253072&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInfo.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInfo.td Fri Nov 13 14:27:45 2015
@@ -93,16 +93,16 @@ defm : ARGUMENT<F32>;
 defm : ARGUMENT<F64>;
 
 
-def Const_I32 : I<(outs I32:$res), (ins i32imm:$imm),
+def CONST_I32 : I<(outs I32:$res), (ins i32imm:$imm),
                   [(set I32:$res, imm:$imm)],
                   "i32.const $res, $imm">;
-def Const_I64 : I<(outs I64:$res), (ins i64imm:$imm),
+def CONST_I64 : I<(outs I64:$res), (ins i64imm:$imm),
                   [(set I64:$res, imm:$imm)],
                   "i64.const $res, $imm">;
-def Const_F32 : I<(outs F32:$res), (ins f32imm:$imm),
+def CONST_F32 : I<(outs F32:$res), (ins f32imm:$imm),
                   [(set F32:$res, fpimm:$imm)],
                   "f32.const $res, $imm">;
-def Const_F64 : I<(outs F64:$res), (ins f64imm:$imm),
+def CONST_F64 : I<(outs F64:$res), (ins f64imm:$imm),
                   [(set F64:$res, fpimm:$imm)],
                   "f64.const $res, $imm">;
 




More information about the llvm-commits mailing list