[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / common-global-addr.ll
blobffd93a9afe6c4711cce74aca066de9b1f267d924
1 ; RUN: llc -march=hexagon -hexagon-small-data-threshold=0 -disable-hexagon-amodeopt -hexagon-cext-threshold=1 < %s | FileCheck %s
2 ; Check commoning of global addresses.
4 @g0 = external global i32
6 ; Function Attrs: nounwind
7 define zeroext i32 @f0() #0 {
8 b0:
9 ; CHECK: ##g0
10 ; CHECK-NOT: ##g0
11   %v0 = load i32, ptr @g0, align 1
12   %v1 = mul nsw i32 100, %v0
13   store i32 %v1, ptr @g0, align 1
14   ret i32 %v1
17 attributes #0 = { nounwind }