1 ; RUN: llc -march=hexagon -hexagon-small-data-threshold=0 < %s | FileCheck %s
3 @global = external global i32, align 4
5 ; There was a bug causing ### to be printed. Make sure we print ## instead.
7 ; CHECK: memw(##global) =
9 define void @foo(i32 %x) #0 {
11 %add = add nsw i32 %x, 1
12 store i32 %add, i32* @global, align 4
16 attributes #0 = { norecurse nounwind }