2012-04-24 10:45:44 +00:00
|
|
|
; RUN: opt < %s -basicaa -globalsmodref-aa -gvn -S | FileCheck %s
|
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
@X = internal global i32 4 ; <i32*> [#uses=2]
|
2004-07-27 06:26:08 +00:00
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
define i32 @test(i32* %P) {
|
2012-04-24 10:45:44 +00:00
|
|
|
; CHECK: @test
|
|
|
|
; CHECK-NEXT: store i32 12, i32* @X
|
|
|
|
; CHECK-NEXT: call void @doesnotmodX()
|
|
|
|
; CHECK-NEXT: ret i32 12
|
2008-02-14 06:56:27 +00:00
|
|
|
store i32 12, i32* @X
|
|
|
|
call void @doesnotmodX( )
|
|
|
|
%V = load i32* @X ; <i32> [#uses=1]
|
|
|
|
ret i32 %V
|
2004-07-27 06:26:08 +00:00
|
|
|
}
|
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
define void @doesnotmodX() {
|
|
|
|
ret void
|
2004-07-27 06:26:08 +00:00
|
|
|
}
|