diff options
-rw-r--r-- | test/llvm_autogenerated/immediates.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/llvm_autogenerated/immediates.wast b/test/llvm_autogenerated/immediates.wast index 9b4715433..6dce33aeb 100644 --- a/test/llvm_autogenerated/immediates.wast +++ b/test/llvm_autogenerated/immediates.wast @@ -105,12 +105,12 @@ ) (func $inf_f32 (result f32) (return - (f32.const infinity) + (f32.const inf) ) ) (func $neginf_f32 (result f32) (return - (f32.const -infinity) + (f32.const -inf) ) ) (func $custom_nan_f32 (result f32) @@ -155,12 +155,12 @@ ) (func $inf_f64 (result f64) (return - (f64.const infinity) + (f64.const inf) ) ) (func $neginf_f64 (result f64) (return - (f64.const -infinity) + (f64.const -inf) ) ) (func $custom_nan_f64 (result f64) |