diff options
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/lcomm.ll')
-rw-r--r-- | llvm/test/CodeGen/Hexagon/lcomm.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Hexagon/lcomm.ll b/llvm/test/CodeGen/Hexagon/lcomm.ll new file mode 100644 index 00000000000..f7bcde7c206 --- /dev/null +++ b/llvm/test/CodeGen/Hexagon/lcomm.ll @@ -0,0 +1,15 @@ +; RUN: llc -march=hexagon < %s | FileCheck %s +; CHECK-NOT: .lcomm g0,4,4,4 + +target triple = "hexagon" + +@g0 = internal global i32 0, align 4 + +; Function Attrs: nounwind +define i32 @f0() #0 { +b0: + %v0 = load i32, i32* @g0, align 4 + ret i32 %v0 +} + +attributes #0 = { nounwind } |