Return success on success

llvm-svn: 5006
This commit is contained in:
Chris Lattner 2002-12-13 10:13:45 +00:00
parent 62ccf91463
commit eda9c79bbf
1 changed files with 2 additions and 2 deletions

View File

@ -11,11 +11,11 @@ Dead:
br label %T
}
void %main() {
int %main() {
br label %Test
Test:
%X = phi int [7, %0], [%Y, %Dead]
ret void
ret int 0
Dead:
%Y = shr int 12, ubyte 4
br label %Test