diff options
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/fast-isel.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/fast-isel.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/fast-isel.ll b/llvm/test/CodeGen/WebAssembly/fast-isel.ll index f0dfc623f60..fa1870f6750 100644 --- a/llvm/test/CodeGen/WebAssembly/fast-isel.ll +++ b/llvm/test/CodeGen/WebAssembly/fast-isel.ll @@ -7,14 +7,14 @@ target triple = "wasm32-unknown-unknown" ; This tests very minimal fast-isel functionality. -; CHECK-LABEL: (func $immediate_f32 -; CHECK: (immediate 0x1.4p1) +; CHECK-LABEL: immediate_f32: +; CHECK: f32.const 0x1.4p1{{$}} define float @immediate_f32() { ret float 2.5 } -; CHECK-LABEL: (func $immediate_f64 -; CHECK: (immediate 0x1.4p1) +; CHECK-LABEL: immediate_f64: +; CHECK: f64.const 0x1.4p1{{$}} define double @immediate_f64() { ret double 2.5 } |