diff options
| author | Dan Gohman <dan433584@gmail.com> | 2015-12-14 22:56:51 +0000 |
|---|---|---|
| committer | Dan Gohman <dan433584@gmail.com> | 2015-12-14 22:56:51 +0000 |
| commit | c7c044544320c3f5efd60f569cb7e6abfcd849bd (patch) | |
| tree | eaebaf13087eb0ba3ced7341c391dd43a4d7267f /llvm/test/CodeGen/WebAssembly/f32.ll | |
| parent | 8fe7e86bf52236a98e20874f96e61ae222945cec (diff) | |
| download | bcm5719-llvm-c7c044544320c3f5efd60f569cb7e6abfcd849bd.tar.gz bcm5719-llvm-c7c044544320c3f5efd60f569cb7e6abfcd849bd.zip | |
[WebAssembly] Add type prefixes to call instructions
Add return type information to call and call_indirect instructions. This
allows them to be disambiguated without knowledge of the callee.
Differential Revision: http://reviews.llvm.org/D15484
llvm-svn: 255565
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/f32.ll')
| -rw-r--r-- | llvm/test/CodeGen/WebAssembly/f32.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/f32.ll b/llvm/test/CodeGen/WebAssembly/f32.ll index 10fe1856037..777010064cd 100644 --- a/llvm/test/CodeGen/WebAssembly/f32.ll +++ b/llvm/test/CodeGen/WebAssembly/f32.ll @@ -146,7 +146,7 @@ define float @fmax32(float %x) { } ; CHECK-LABEL: fma32: -; CHECK: call $push0=, fmaf, $0, $1, $2{{$}} +; CHECK: {{^}} f32.call $push0=, fmaf, $0, $1, $2{{$}} ; CHECK-NEXT: return $pop0{{$}} define float @fma32(float %a, float %b, float %c) { %d = call float @llvm.fma.f32(float %a, float %b, float %c) |

