forked from OSchip/llvm-project
New testcase for a pattern that occurs 20 times in perlbmk
llvm-svn: 16503
This commit is contained in:
parent
bf6439fd27
commit
45a5ace32e
|
@ -113,3 +113,9 @@ sbyte %test17(sbyte %X, sbyte %Y) { ;; ~(~X & Y) --> (X | ~Y)
|
||||||
ret sbyte %D
|
ret sbyte %D
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool %test18(int %A) {
|
||||||
|
%B = and int %A, -128
|
||||||
|
%C = setne int %B, 0 ;; C >= 128
|
||||||
|
ret bool %C
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue