A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / Analysis / GlobalsModRef / modreftest.ll
blob3a02a94a99b55c5b149555c6d2698b1e4bcad6c4
1 ; RUN: opt < %s -basicaa -globalsmodref-aa -gvn -S | not grep load
2 @X = internal global i32 4              ; <i32*> [#uses=2]
4 define i32 @test(i32* %P) {
5         store i32 12, i32* @X
6         call void @doesnotmodX( )
7         %V = load i32* @X               ; <i32> [#uses=1]
8         ret i32 %V
11 define void @doesnotmodX() {
12         ret void