aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/elf-comdat2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/elf-comdat2.ll')
-rw-r--r--test/CodeGen/X86/elf-comdat2.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/X86/elf-comdat2.ll b/test/CodeGen/X86/elf-comdat2.ll
new file mode 100644
index 0000000..209da39
--- /dev/null
+++ b/test/CodeGen/X86/elf-comdat2.ll
@@ -0,0 +1,12 @@
+; RUN: llc -mtriple x86_64-pc-linux-gnu < %s | FileCheck %s
+
+$foo = comdat any
+@bar = global i32 42, comdat $foo
+@foo = global i32 42
+
+; CHECK: .type bar,@object
+; CHECK-NEXT: .section .data.bar,"aGw",@progbits,foo,comdat
+; CHECK-NEXT: .globl bar
+; CHECK: .type foo,@object
+; CHECK-NEXT: .data
+; CHECK-NEXT: .globl foo