[llvm] r308273 - Revert part of r308100 since the cause (r308025) was also reverted.

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 18 01:20:50 PDT 2017


Author: chandlerc
Date: Tue Jul 18 01:20:50 2017
New Revision: 308273

URL: http://llvm.org/viewvc/llvm-project?rev=308273&view=rev
Log:
Revert part of r308100 since the cause (r308025) was also reverted.

The commit r308100 updated WebAssembly tests for r308025. In one case it
merely made the test more resilient but in another case it made
a substantive update. Because r308025 was reverted in r308271, these
changes to the test also need to be reverted. They should be folded into
the recommit of r308025 when it is ready.

Modified:
    llvm/trunk/test/CodeGen/WebAssembly/userstack.ll

Modified: llvm/trunk/test/CodeGen/WebAssembly/userstack.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/WebAssembly/userstack.ll?rev=308273&r1=308272&r2=308273&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/userstack.ll (original)
+++ llvm/trunk/test/CodeGen/WebAssembly/userstack.ll Tue Jul 18 01:20:50 2017
@@ -36,13 +36,13 @@ define void @alloca3264() {
  ; CHECK-NEXT: tee_local $push[[L5:.+]]=, [[SP:.+]], $pop[[L6]]
  %r1 = alloca i32
  %r2 = alloca double
+ ; CHECK-NEXT: i32.const $push[[L0:.+]]=, 0
+ ; CHECK-NEXT: i32.store 12($pop[[L5]]), $pop[[L0]]
  store i32 0, i32* %r1
- store double 0.0, double* %r2
- ; CHECK-NEXT: i64.const $push[[L1:.+]]=, 0
- ; CHECK-NEXT: i64.store 0($pop[[L5]]), $pop[[L1]]
  ; CHECK-NEXT: get_local $push[[L2:.+]]=, [[SP]]{{$}}
- ; CHECK-NEXT: i32.const $push[[L0:.+]]=, 0
- ; CHECK-NEXT: i32.store 12($pop[[L2]]), $pop[[L0]]
+ ; CHECK-NEXT: i64.const $push[[L1:.+]]=, 0
+ ; CHECK-NEXT: i64.store 0($pop[[L2]]), $pop[[L1]]
+ store double 0.0, double* %r2
  ; CHECK-NEXT: return
  ret void
 }




More information about the llvm-commits mailing list