1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-12 07:37:34 +00:00

Checkin an old bug, which appears to be fixed

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8966 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-10-08 18:26:10 +00:00
parent 929c6fbcbc
commit b8d3fd0390

@ -0,0 +1,17 @@
; RUN: llvm-as < %s | opt -inline -disable-output
implementation
int %main() {
entry:
invoke void %__main( )
to label %LongJmpBlkPre except label %LongJmpBlkPre
LongJmpBlkPre:
%i.3 = phi uint [ 0, %entry ], [ 0, %entry]
ret int 0
}
void %__main() {
ret void
}