llvm/llvm/test/MC/WebAssembly/type-checker-emit-after-unreachable.s

# We had a regression where an else instruction would be omitted if it followed
# return (i.e. it was in an unreachable state).
# See: https://github.com/llvm/llvm-project/issues/56935

# RUN: llvm-mc -triple=wasm32-unknown-unknown < %s | FileCheck %s

foo:
  .functype foo () -> (i32)
  i32.const 1
  if i32
    i32.const 2
    return
  else
    i32.const 3
  end_if
  end_function

# CHECK-LABEL: foo:
# CHECK-NEXT: .functype foo () -> (i32)
# CHECK-NEXT: i32.const 1
# CHECK-NEXT: if i32
# CHECK-NEXT: i32.const 2
# CHECK-NEXT: return
# CHECK-NEXT: else
# CHECK-NEXT: i32.const 3
# CHECK-NEXT: end_if
# CHECK-NEXT: end_function