• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt -globalopt < %s -S -o - | FileCheck %s
2
3@GV1 = internal global i64 1
4; CHECK: @GV1 = internal unnamed_addr constant i64 1
5
6define void @test1() {
7entry:
8  %0 = load atomic i8* bitcast (i64* @GV1 to i8*) acquire, align 8
9  ret void
10}
11