llvm-6502/test/Analysis/GlobalsModRef/2008-09-13-VolatileRead.ll

10 lines
211 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -globalsmodref-aa -markmodref | llvm-dis | not grep read
; PR2792
@g = global i32 0 ; <i32*> [#uses=1]
define i32 @f() {
%t = volatile load i32* @g ; <i32> [#uses=1]
ret i32 %t
}