diff options
Diffstat (limited to 'test/llvm_autogenerated/select.wast')
-rw-r--r-- | test/llvm_autogenerated/select.wast | 168 |
1 files changed, 60 insertions, 108 deletions
diff --git a/test/llvm_autogenerated/select.wast b/test/llvm_autogenerated/select.wast index 507a3ca99..30d1ff0b8 100644 --- a/test/llvm_autogenerated/select.wast +++ b/test/llvm_autogenerated/select.wast @@ -13,158 +13,110 @@ (export "select_f64_eq" $select_f64_eq) (export "select_f64_ne" $select_f64_ne) (func $select_i32_bool (param $$0 i32) (param $$1 i32) (param $$2 i32) (result i32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i32.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (i32.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_i32_eq (param $$0 i32) (param $$1 i32) (param $$2 i32) (result i32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i32.select - (get_local $$0) - (get_local $$2) - (get_local $$1) - ) - ) + (return + (i32.select + (get_local $$0) + (get_local $$2) + (get_local $$1) ) ) ) (func $select_i32_ne (param $$0 i32) (param $$1 i32) (param $$2 i32) (result i32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i32.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (i32.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_i64_bool (param $$0 i32) (param $$1 i64) (param $$2 i64) (result i64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i64.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (i64.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_i64_eq (param $$0 i32) (param $$1 i64) (param $$2 i64) (result i64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i64.select - (get_local $$0) - (get_local $$2) - (get_local $$1) - ) - ) + (return + (i64.select + (get_local $$0) + (get_local $$2) + (get_local $$1) ) ) ) (func $select_i64_ne (param $$0 i32) (param $$1 i64) (param $$2 i64) (result i64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (i64.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (i64.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_f32_bool (param $$0 i32) (param $$1 f32) (param $$2 f32) (result f32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f32.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (f32.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_f32_eq (param $$0 i32) (param $$1 f32) (param $$2 f32) (result f32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f32.select - (get_local $$0) - (get_local $$2) - (get_local $$1) - ) - ) + (return + (f32.select + (get_local $$0) + (get_local $$2) + (get_local $$1) ) ) ) (func $select_f32_ne (param $$0 i32) (param $$1 f32) (param $$2 f32) (result f32) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f32.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (f32.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_f64_bool (param $$0 i32) (param $$1 f64) (param $$2 f64) (result f64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f64.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (f64.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) (func $select_f64_eq (param $$0 i32) (param $$1 f64) (param $$2 f64) (result f64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f64.select - (get_local $$0) - (get_local $$2) - (get_local $$1) - ) - ) + (return + (f64.select + (get_local $$0) + (get_local $$2) + (get_local $$1) ) ) ) (func $select_f64_ne (param $$0 i32) (param $$1 f64) (param $$2 f64) (result f64) - (block $fake_return_waka123 - (block - (br $fake_return_waka123 - (f64.select - (get_local $$0) - (get_local $$1) - (get_local $$2) - ) - ) + (return + (f64.select + (get_local $$0) + (get_local $$1) + (get_local $$2) ) ) ) |