aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/ScalarEvolution/and-xor.ll
blob: 767194c8bd9a5ddbf4e6dc25989fb02e7222a5f8 (plain)
1
2
3
4
5
6
7
8
; RUN: opt %s -scalar-evolution -analyze -disable-output \
; RUN:   | grep {\\-->  (zext} | count 2

define i32 @foo(i32 %x) {
  %n = and i32 %x, 255
  %y = xor i32 %n, 255
  ret i32 %y
}