diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-11-23 21:55:57 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-11-23 21:55:57 +0000 |
commit | 700515fa929495428201f9d19198dd4bab4ec35e (patch) | |
tree | e523f08b3cb235e7ababd995f805e7b52aba3d82 /llvm/test/CodeGen/WebAssembly/fast-isel.ll | |
parent | 2e1d85a09e140e6c41e8b575511e43df28186eb2 (diff) | |
download | bcm5719-llvm-700515fa929495428201f9d19198dd4bab4ec35e.tar.gz bcm5719-llvm-700515fa929495428201f9d19198dd4bab4ec35e.zip |
[WebAssembly] Suffix output operands with '='.
This distinguishes input operands from output operands. This is something of
a syntactic experiment to see whether the mild amount of clutter this adds is
outweighed by the extra information it conveys to the reader.
llvm-svn: 253922
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/fast-isel.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/fast-isel.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/fast-isel.ll b/llvm/test/CodeGen/WebAssembly/fast-isel.ll index 35fd0bd0912..07d78c1415e 100644 --- a/llvm/test/CodeGen/WebAssembly/fast-isel.ll +++ b/llvm/test/CodeGen/WebAssembly/fast-isel.ll @@ -8,13 +8,13 @@ target triple = "wasm32-unknown-unknown" ; This tests very minimal fast-isel functionality. ; CHECK-LABEL: immediate_f32: -; CHECK: f32.const $push{{[0-9]+}}, 0x1.4p1{{$}} +; CHECK: f32.const $push{{[0-9]+}}=, 0x1.4p1{{$}} define float @immediate_f32() { ret float 2.5 } ; CHECK-LABEL: immediate_f64: -; CHECK: f64.const $push{{[0-9]+}}, 0x1.4p1{{$}} +; CHECK: f64.const $push{{[0-9]+}}=, 0x1.4p1{{$}} define double @immediate_f64() { ret double 2.5 } |