• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt -S -early-cse -earlycse-debug-hash < %s | FileCheck %s
2
3@var = global i32 undef
4declare void @foo() nounwind
5
6define void @test() {
7; CHECK-LABEL: @test(
8; CHECK-NOT: store
9  store i32 1, i32* @var
10; CHECK: call void @foo()
11  call void @foo() writeonly
12; CHECK: store i32 2, i32* @var
13  store i32 2, i32* @var
14  ret void
15}
16