summaryrefslogtreecommitdiff
path: root/test/ELF/lto/comdat.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/lto/comdat.ll')
-rw-r--r--test/ELF/lto/comdat.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/ELF/lto/comdat.ll b/test/ELF/lto/comdat.ll
deleted file mode 100644
index 1739351220cd7..0000000000000
--- a/test/ELF/lto/comdat.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; REQUIRES: x86
-; RUN: llvm-as %s -o %t.o
-; RUN: ld.lld %t.o %t.o -o %t.so -shared
-; RUN: llvm-readobj -t %t.so | FileCheck %s
-
-; CHECK: Name: foo
-; CHECK-NEXT: Value:
-; CHECK-NEXT: Size: 1
-; CHECK-NEXT: Binding: Global
-; CHECK-NEXT: Type: Function
-; CHECK-NEXT: Other: 0
-; CHECK-NEXT: Section: .text
-
-target triple = "x86_64-unknown-linux-gnu"
-target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
-
-$foo = comdat any
-define void @foo() comdat {
- ret void
-}
-