summaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/global_merge_1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/global_merge_1.ll')
-rw-r--r--test/CodeGen/AArch64/global_merge_1.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/AArch64/global_merge_1.ll b/test/CodeGen/AArch64/global_merge_1.ll
new file mode 100644
index 0000000000..e0587d6b90
--- /dev/null
+++ b/test/CodeGen/AArch64/global_merge_1.ll
@@ -0,0 +1,17 @@
+; RUN: llc < %s -mtriple=aarch64-none-linux-gnu | FileCheck %s
+
+@m = internal global i32 0, align 4
+@n = internal global i32 0, align 4
+
+define void @f1(i32 %a1, i32 %a2) {
+; CHECK-LABEL: f1:
+; CHECK: adrp x{{[0-9]+}}, _MergedGlobals
+; CHECK-NOT: adrp
+ store i32 %a1, i32* @m, align 4
+ store i32 %a2, i32* @n, align 4
+ ret void
+}
+
+; CHECK: .local _MergedGlobals
+; CHECK: .comm _MergedGlobals,8,8
+