diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-10-03 00:01:53 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-10-03 00:01:53 +0000 |
commit | 6a050f30de04c54010da63d997fb304078adf49d (patch) | |
tree | 2aab33e183d72fce3003ebf12fa4c4dbc9b4e5b5 /llvm/test/CodeGen/WebAssembly/conv.ll | |
parent | eb440092c9e85f287e050d6ebcaa5d34932044e2 (diff) | |
download | bcm5719-llvm-6a050f30de04c54010da63d997fb304078adf49d.tar.gz bcm5719-llvm-6a050f30de04c54010da63d997fb304078adf49d.zip |
[WebAssembly] Rename setlocal to set_local to match the spec.
llvm-svn: 249218
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/conv.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/conv.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/conv.ll b/llvm/test/CodeGen/WebAssembly/conv.ll index ae82abfe79d..867db778aae 100644 --- a/llvm/test/CodeGen/WebAssembly/conv.ll +++ b/llvm/test/CodeGen/WebAssembly/conv.ll @@ -7,8 +7,8 @@ target triple = "wasm32-unknown-unknown" ; CHECK-LABEL: $wrap_i64_i32 ; CHECK-NEXT: (param i64) (result i32) -; CHECK-NEXT: (setlocal @0 (argument 0)) -; CHECK-NEXT: (setlocal @1 (wrap_i64 @0)) +; CHECK-NEXT: (set_local @0 (argument 0)) +; CHECK-NEXT: (set_local @1 (wrap_i64 @0)) ; CHECK-NEXT: (return @1) define i32 @wrap_i64_i32(i64 %x) { %a = trunc i64 %x to i32 |