Skip to content

Commit bf92eba

Browse files
authored
Fix comment in wasm unreachable test (#70340)
Some textual editing errors got through this pull request that was merged a few weeks ago: #65876 This patch clears up the unintentional duplicated line, and white-space at the end of the lines.
1 parent 5975002 commit bf92eba

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

llvm/test/CodeGen/WebAssembly/unreachable.ll

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,10 @@ define i32 @missing_ret_unreachable() {
8080
unreachable
8181
}
8282

83-
; This is similar to the above test, but ensures wasm unreachable is emitted
84-
; This is similar to the above test, but the callee has a 'noreturn' attribute.
85-
; There is an optimization that removes an 'unreachable' after a noreturn call,
86-
; but Wasm backend doesn't use it and ignore `--no-trap-after-noreturn`, if
87-
; given, to generate valid code.
83+
; This is similar to the above test, but the callee has a 'noreturn' attribute.
84+
; There is an optimization that removes an 'unreachable' after a noreturn call,
85+
; but Wasm backend doesn't use it and ignore `--no-trap-after-noreturn`, if
86+
; given, to generate valid code.
8887
define i32 @missing_ret_noreturn_unreachable() {
8988
; CHECK-LABEL: missing_ret_noreturn_unreachable:
9089
; CHECK: .functype missing_ret_noreturn_unreachable () -> (i32)

0 commit comments

Comments
 (0)