blob: 84c4552a627d69958d929ac50f9069752cdd220e [file] [log] [blame]
Chris Lattneraef20fb2004-10-16 18:24:11 +00001
2implementation
3
4declare void %bar()
5
6int %foo() { ;; Calling this function has undefined behavior
7 unreachable
8}
9
10double %xyz() {
11 call void %bar()
12 unreachable ;; Bar must not return.
13}