mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-18 12:31:26 +00:00
Test case for PR1256.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c6deb3d447
commit
8ee16fbc73
24
test/Assembler/2007-03-14-UpgradeLocalSignless.ll
Normal file
24
test/Assembler/2007-03-14-UpgradeLocalSignless.ll
Normal file
@ -0,0 +1,24 @@
|
||||
; PR1256
|
||||
; RUN: llvm-upgrade < %s | grep 'call void @f( i32 .tmp )'
|
||||
; RUN: llvm-upgrade < %s | grep 'call void @g( i8 .tmp\.upgrd\.2 )'
|
||||
|
||||
target datalayout = "e-p:32:32"
|
||||
target endian = little
|
||||
target pointersize = 32
|
||||
target triple = "i686-pc-linux-gnu"
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
void %_Z4func() {
|
||||
entry:
|
||||
%tmp = add int 0, 0
|
||||
%tmp = add uint 1, 1
|
||||
%tmp = add ubyte 1, 2
|
||||
%tmp = add sbyte 2, 3
|
||||
call void %f (int %tmp)
|
||||
call void %g (ubyte %tmp)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void %f(int)
|
||||
declare void %g(ubyte)
|
Loading…
x
Reference in New Issue
Block a user