2002-05-06 05:51:26 +00:00
|
|
|
; This test makes sure that these instructions are properly eliminated.
|
|
|
|
;
|
|
|
|
|
2002-08-02 19:27:58 +00:00
|
|
|
; RUN: if as < %s | opt -instcombine -die | dis | grep sub | grep -v 'sub int %Cok, %Bok'
|
2002-05-06 05:51:26 +00:00
|
|
|
; RUN: then exit 1
|
|
|
|
; RUN: else exit 0
|
|
|
|
; RUN: fi
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2003-02-18 19:43:21 +00:00
|
|
|
int %test1(int %A) {
|
2002-05-06 05:51:26 +00:00
|
|
|
%B = sub int %A, %A ; ISA constant 0
|
|
|
|
ret int %B
|
|
|
|
}
|
|
|
|
|
2003-02-18 19:43:21 +00:00
|
|
|
int %test2(int %A) {
|
2002-05-06 05:51:26 +00:00
|
|
|
%B = sub int %A, 0
|
|
|
|
ret int %B
|
|
|
|
}
|
|
|
|
|
2003-02-18 19:43:21 +00:00
|
|
|
int %test3(int %A) {
|
2002-05-06 16:19:16 +00:00
|
|
|
%B = sub int 0, %A ; B = -A
|
|
|
|
%C = sub int 0, %B ; C = -B = A
|
|
|
|
ret int %C
|
|
|
|
}
|
2002-05-08 23:15:01 +00:00
|
|
|
|
2003-02-18 19:43:21 +00:00
|
|
|
int %test4(int %A, int %x) {
|
2002-05-08 23:15:01 +00:00
|
|
|
%B = sub int 0, %A
|
|
|
|
%C = sub int %x, %B
|
|
|
|
ret int %C
|
|
|
|
}
|
|
|
|
|
2003-02-18 19:43:21 +00:00
|
|
|
int %test5(int %A, int %Bok, int %Cok) {
|
2002-05-09 01:28:30 +00:00
|
|
|
%D = sub int %Bok, %Cok
|
2002-05-08 23:15:01 +00:00
|
|
|
%E = sub int %A, %D
|
|
|
|
ret int %E
|
|
|
|
}
|
2003-02-18 19:28:47 +00:00
|
|
|
|
|
|
|
int %test6(int %A, int %B) {
|
|
|
|
%C = and int %A, %B ; A - (A & B) => A & ~B
|
|
|
|
%D = sub int %A, %C
|
|
|
|
ret int %D
|
|
|
|
}
|
|
|
|
|
|
|
|
int %test7(int %A) {
|
|
|
|
%B = sub int -1, %A ; B = ~A
|
|
|
|
ret int %B
|
|
|
|
}
|
|
|
|
|