mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 04:08:07 +00:00
154113b78c
out this recent regression git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17898 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
207 B
LLVM
15 lines
207 B
LLVM
; RUN: llvm-as < %s | opt -sccp -disable-output
|
|
|
|
implementation
|
|
|
|
declare int %foo()
|
|
|
|
void %caller() {
|
|
br bool true, label %T, label %F
|
|
F:
|
|
%X = invoke int %foo() to label %T unwind label %T
|
|
|
|
T:
|
|
ret void
|
|
}
|