1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-11 00:39:36 +00:00

Syntax upgrade and fix for PR1336.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36131 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-04-16 14:46:17 +00:00
parent 264225f982
commit 90b707f51e

@ -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() {
%tmp.1 = add int 0, 1
define void @test() {
%tmp.1 = add i32 0, 1
br label %return
return:
%tmp.1 = add int 0, 1
%tmp.1 = add i32 0, 1
ret void
}