1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/CodeGen/X86/elf-comdat2.ll

13 lines
343 B
LLVM
Raw Normal View History

; 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