Rename these to start with %c, as they are the only ones that are checked.

No change to the tests themselves.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2005-01-31 05:17:31 +00:00
parent f9527850e6
commit 2a73a0bbb1

View File

@@ -118,40 +118,40 @@ short %test18(sbyte %tmp3) {
} }
bool %test19(int %X) { bool %test19(int %X) {
%Y = cast int %X to long %c = cast int %X to long
%Z = setlt long %Y, 12345 %Z = setlt long %c, 12345
ret bool %Z ret bool %Z
} }
bool %test20(bool %B) { bool %test20(bool %B) {
%C = cast bool %B to int %c = cast bool %B to int
%D = setlt int %C, -1 %D = setlt int %c, -1
ret bool %D ;; false ret bool %D ;; false
} }
uint %test21(uint %X) { uint %test21(uint %X) {
%Y = cast uint %X to sbyte %c1 = cast uint %X to sbyte
%Z = cast sbyte %Y to uint ;; sext -> zext -> and -> nop %c2 = cast sbyte %c1 to uint ;; sext -> zext -> and -> nop
%RV = and uint %Z, 255 %RV = and uint %c2, 255
ret uint %RV ret uint %RV
} }
uint %test22(uint %X) { uint %test22(uint %X) {
%Y = cast uint %X to sbyte %c1 = cast uint %X to sbyte
%Z = cast sbyte %Y to uint ;; sext -> zext -> and -> nop %c2 = cast sbyte %c1 to uint ;; sext -> zext -> and -> nop
%RV = shl uint %Z, ubyte 24 %RV = shl uint %c2, ubyte 24
ret uint %RV ret uint %RV
} }
int %test23(int %X) { int %test23(int %X) {
%Y = cast int %X to ushort ;; Turn into an AND even though X %c1 = cast int %X to ushort ;; Turn into an AND even though X
%Z = cast ushort %Y to int ;; and Z are signed. %c2 = cast ushort %c1 to int ;; and Z are signed.
ret int %Z ret int %c2
} }
bool %test24(bool %C) { bool %test24(bool %C) {
%X = select bool %C, uint 14, uint 1234 %X = select bool %C, uint 14, uint 1234
%Y = cast uint %X to bool ;; Fold cast into select %c = cast uint %X to bool ;; Fold cast into select
ret bool %Y ret bool %c
} }