diff options
Diffstat (limited to 'test/CodeGen/X86/elf-comdat.ll')
-rw-r--r-- | test/CodeGen/X86/elf-comdat.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/elf-comdat.ll b/test/CodeGen/X86/elf-comdat.ll index c7e6df7..35d8d6f 100644 --- a/test/CodeGen/X86/elf-comdat.ll +++ b/test/CodeGen/X86/elf-comdat.ll @@ -1,8 +1,8 @@ ; RUN: llc -mtriple x86_64-pc-linux-gnu < %s | FileCheck %s $f = comdat any -@v = global i32 0, comdat $f -define void @f() comdat $f { +@v = global i32 0, comdat($f) +define void @f() comdat($f) { ret void } ; CHECK: .section .text.f,"axG",@progbits,f,comdat |