Fix borken testcase

llvm-svn: 32627
This commit is contained in:
Chris Lattner 2006-12-16 02:30:24 +00:00
parent cf1eac3535
commit a07e363aae
1 changed files with 3 additions and 1 deletions

View File

@ -4,8 +4,10 @@ declare int* %bar()
float* %foo() {
%tmp.11 = invoke float* cast (int* ()* %bar to float* ()*)()
to label %invoke_cont except label %invoke_cont
to label %invoke_cont except label %X
invoke_cont:
ret float *%tmp.11
X:
ret float *null
}