mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-23 15:29:51 +00:00
9bbcf09431
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17058 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
198 B
LLVM
14 lines
198 B
LLVM
|
|
implementation
|
|
|
|
declare void %bar()
|
|
|
|
int %foo() { ;; Calling this function has undefined behavior
|
|
unreachable
|
|
}
|
|
|
|
double %xyz() {
|
|
call void %bar()
|
|
unreachable ;; Bar must not return.
|
|
}
|