Syntax upgrade and fix for PR1336.

llvm-svn: 36131
This commit is contained in:
Reid Spencer 2007-04-16 14:46:17 +00:00
parent 15326fa114
commit c6ee811cc2
1 changed files with 5 additions and 4 deletions

View File

@ -1,10 +1,11 @@
; RUN: llvm-as < %s 2>&1 | not grep Asserti ; RUN: llvm-as < %s |& not grep Asserti
; RUN: llvm-as < %s |& grep Redefinition
void %test() { define void @test() {
%tmp.1 = add int 0, 1 %tmp.1 = add i32 0, 1
br label %return br label %return
return: return:
%tmp.1 = add int 0, 1 %tmp.1 = add i32 0, 1
ret void ret void
} }