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