[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Analysis / BasicAA / 2009-03-04-GEPNoalias.ll
blob00f669863baa71dad981ac56846e5a55daedca5d
1 ; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn -S | FileCheck %s
3 declare noalias ptr @noalias()
5 define i32 @test(i32 %x) {
6 ; CHECK: load i32, ptr %a
7   %a = call ptr @noalias()
8   store i32 1, ptr %a
9   %b = getelementptr i32, ptr %a, i32 %x
10   store i32 2, ptr %b
12   %c = load i32, ptr %a
13   ret i32 %c