From: Dan Gohman Date: Fri, 4 Dec 2015 17:19:44 +0000 (+0000) Subject: [WebAssembly] Give names to the callseq begin and end instructions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6326d04e5969570e0c7f883e1fadbcf6a1fc4e1b;p=oota-llvm.git [WebAssembly] Give names to the callseq begin and end instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254730 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/WebAssembly/WebAssemblyInstrCall.td b/lib/Target/WebAssembly/WebAssemblyInstrCall.td index 4028460bd23..018d26cfacd 100644 --- a/lib/Target/WebAssembly/WebAssemblyInstrCall.td +++ b/lib/Target/WebAssembly/WebAssemblyInstrCall.td @@ -17,10 +17,10 @@ let Defs = [ARGUMENTS] in { // The call sequence start/end LLVM-isms isn't useful to WebAssembly since it's // a virtual ISA. let isCodeGenOnly = 1 in { -def : I<(outs), (ins i64imm:$amt), - [(WebAssemblycallseq_start timm:$amt)]>; -def : I<(outs), (ins i64imm:$amt1, i64imm:$amt2), - [(WebAssemblycallseq_end timm:$amt1, timm:$amt2)]>; +def ADJCALLSTACKDOWN : I<(outs), (ins i64imm:$amt), + [(WebAssemblycallseq_start timm:$amt)]>; +def ADJCALLSTACKUP : I<(outs), (ins i64imm:$amt1, i64imm:$amt2), + [(WebAssemblycallseq_end timm:$amt1, timm:$amt2)]>; } // isCodeGenOnly = 1 multiclass CALL {