aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/computeKnownBits_urem.ll
blob: 9902e6f2597b97ca5a19c156be77ab721f169522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
define i32 @main() #0 {
entry:
  %a = alloca i32, align 4
  store i32 1, i32* %a, align 4
  %0 = load i32* %a, align 4
  %or = or i32 1, %0
  %and = and i32 1, %or
  %rem = urem i32 %and, 1
  %add = add i32 %rem, 1
  ret i32 %add
}
; CHECK: $1, %eax
; CHECK-NEXT: retq