mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
7e6b4f7a6d
Tweak the RUN: lines of these tests to accommodate the renaming of variables done by llvm-upgrade. The renaming occurs as a result of avoiding name collisons for collapsed type planes. Conflicting names have a .u (unsigned) or .s (signed) suffix added. This patch updates the grep expression to accommodate the new names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32815 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
826 B
LLVM
45 lines
826 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -o %t.s -f &&
|
|
; RUN: grep "mov r0, #0" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "mov r0, #255" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "mov r0, #256" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep ".word.*257" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "mov r0, #-1073741761" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "mov r0, #1008" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "cmp r0, #65536" %t.s | wc -l | grep 1 &&
|
|
; RUN: grep "\.comm.*a.s,4,4" %t.s | wc -l | grep 1
|
|
|
|
%a = internal global int 0
|
|
|
|
uint %f1() {
|
|
ret uint 0
|
|
}
|
|
|
|
uint %f2() {
|
|
ret uint 255
|
|
}
|
|
|
|
uint %f3() {
|
|
ret uint 256
|
|
}
|
|
|
|
uint %f4() {
|
|
ret uint 257
|
|
}
|
|
|
|
uint %f5() {
|
|
ret uint 3221225535
|
|
}
|
|
|
|
uint %f6() {
|
|
ret uint 1008
|
|
}
|
|
|
|
void %f7(uint %a) {
|
|
entry:
|
|
%b = setgt uint %a, 65536
|
|
br bool %b, label %r, label %r
|
|
|
|
r:
|
|
ret void
|
|
}
|