Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Analysis / BasicAA / 2007-08-01-NoAliasAndCalls.ll
blob4bc3980a30ed9904f702af2f8e2bd6d7b3ac746e
1 ; RUN: opt < %s -aa-pipeline=basic-aa -passes=aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
3 ; CHECK: Function: foo
4 ; CHECK:   MayAlias: i32* %x, i32* %y
6 define void @foo(ptr noalias %x) {
7   %y = call ptr @unclear(ptr %x)
8   store i32 0, ptr %x
9   store i32 0, ptr %y
10   ret void
13 declare ptr @unclear(ptr %a)