[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / GlobalOpt / const-return-status-atomic.ll
blobacc161edfc138b200e00f134ae3a9217b02ddbce
1 ; RUN: opt -passes=globalopt < %s -S -o - | FileCheck %s
3 ; When simplifying users of a global variable, the pass could incorrectly
4 ; return false if there were still some uses left, and no further optimizations
5 ; was done. This was caught by the pass return status check that is hidden
6 ; under EXPENSIVE_CHECKS.
8 @GV1 = internal unnamed_addr global i64 1, align 8
10 ; CHECK-NOT: @GV1 =
12 define void @test1() local_unnamed_addr {
13 ; CHECK-LABEL: @test1
14 ; CHECK-NEXT: ret void
16   %val = load atomic i8, i8* bitcast (i64* @GV1 to i8*) acquire, align 8
17   ret void
20 define i64 @test2() local_unnamed_addr {
21 ; CHECK-LABEL: @test2
22 ; CHECK-NEXT: ret i64 1
24   %val = load atomic i64, i64* @GV1 acquire, align 8
25   ret i64 %val