mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
5a279bb4b2
llvm-svn: 74868
20 lines
377 B
LLVM
20 lines
377 B
LLVM
; RUN: llvm-as < %s | llc -march=arm -mattr=+v6t2 | grep "bfc " | count 3
|
|
|
|
; 4278190095 = 0xff00000f
|
|
define i32 @f1(i32 %a) {
|
|
%tmp = and i32 %a, 4278190095
|
|
ret i32 %tmp
|
|
}
|
|
|
|
; 4286578688 = 0xff800000
|
|
define i32 @f2(i32 %a) {
|
|
%tmp = and i32 %a, 4286578688
|
|
ret i32 %tmp
|
|
}
|
|
|
|
; 4095 = 0x00000fff
|
|
define i32 @f3(i32 %a) {
|
|
%tmp = and i32 %a, 4095
|
|
ret i32 %tmp
|
|
}
|