1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/test/CodeGen/CBackend/2003-11-21-ConstantShiftExpr.ll

14 lines
269 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=c
@y = weak global i8 0 ; <i8*> [#uses=1]
2004-11-06 22:40:51 +01:00
define i32 @testcaseshr() {
entry:
ret i32 lshr (i32 ptrtoint (i8* @y to i32), i32 4)
}
define i32 @testcaseshl() {
2003-11-22 06:01:57 +01:00
entry:
ret i32 shl (i32 ptrtoint (i8* @y to i32), i32 4)
2003-11-22 06:01:57 +01:00
}