aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionAttrs/2008-09-13-VolatileRead.ll
blob: fef872c794aeb0b0f5b02def287f7f49e017b8f2 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt < %s -functionattrs -S | not grep read
; PR2792

@g = global i32 0		; <i32*> [#uses=1]

define i32 @f() {
	%t = load volatile i32, i32* @g		; <i32> [#uses=1]
	ret i32 %t
}