mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
71fc5e8fce
llvm-svn: 94574
9 lines
174 B
LLVM
9 lines
174 B
LLVM
; RUN: opt < %s -scalar-evolution -analyze \
|
|
; RUN: | grep {\\--> (zext} | count 2
|
|
|
|
define i32 @foo(i32 %x) {
|
|
%n = and i32 %x, 255
|
|
%y = xor i32 %n, 255
|
|
ret i32 %y
|
|
}
|