1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

New testcase for infinite loop that the raise pass is getting into

llvm-svn: 4087
This commit is contained in:
Chris Lattner 2002-10-09 00:09:59 +00:00
parent 88de60dd26
commit 929c9c90be

View File

@ -0,0 +1,10 @@
; Due to a recent change, this testcase now sends the raise pass into an infinite loop
;
; RUN: as < %s | opt -raise
implementation
void %test(sbyte* %P, void(...) * %F) {
call void (...)* %F(sbyte* %P)
ret void
}