[llvm] r339798 - [WebAssembly] Test commit
Thomas Lively via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 15 10:50:23 PDT 2018
Author: tlively
Date: Wed Aug 15 10:50:22 2018
New Revision: 339798
URL: http://llvm.org/viewvc/llvm-project?rev=339798&view=rev
Log:
[WebAssembly] Test commit
Changes a comment and some whitespace to test commit access.
Modified:
llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td?rev=339798&r1=339797&r2=339798&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td Wed Aug 15 10:50:22 2018
@@ -12,7 +12,7 @@
///
//===----------------------------------------------------------------------===//
-// Immediate argument types
+// immediate argument types
def ImmByte : ImmLeaf<i32, [{ return 0 <= Imm && Imm < 256; }]>;
foreach SIZE = [2, 4, 8, 16, 32] in
def LaneIdx#SIZE : ImmLeaf<i32, "return 0 <= Imm && Imm < "#SIZE#";">;
@@ -54,7 +54,6 @@ multiclass ExtractLaneExtended<string si
!add(baseInst, 2),
!cast<PatFrag>("extract_i16x8"#sign)>;
}
-
let Defs = [ARGUMENTS] in {
defm EXTRACT_LANE_S : ExtractLaneExtended<"_s", 9>;
defm EXTRACT_LANE_U : ExtractLaneExtended<"_u", 10>;
More information about the llvm-commits
mailing list