mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-15 18:05:09 +00:00
12 lines
211 B
LLVM
12 lines
211 B
LLVM
|
; RUN: opt < %s -scalar-evolution -analyze | FileCheck %s
|
||
|
|
||
|
; CHECK: --> (zext
|
||
|
; CHECK: --> (zext
|
||
|
; CHECK-NOT: --> (zext
|
||
|
|
||
|
define i32 @foo(i32 %x) {
|
||
|
%n = and i32 %x, 255
|
||
|
%y = xor i32 %n, 255
|
||
|
ret i32 %y
|
||
|
}
|