From a3f2b21affd03c233984f2141ef8e443a5f037d4 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Mon, 24 Aug 2009 17:51:19 +0000 Subject: [PATCH] Split test into 3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79926 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/ARM/2009-08-23-linkerprivate.ll | 8 ++++++++ .../{Generic => PowerPC}/2009-08-23-linkerprivate.ll | 2 -- test/CodeGen/X86/2009-08-23-linkerprivate.ll | 8 ++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 test/CodeGen/ARM/2009-08-23-linkerprivate.ll rename test/CodeGen/{Generic => PowerPC}/2009-08-23-linkerprivate.ll (72%) create mode 100644 test/CodeGen/X86/2009-08-23-linkerprivate.ll diff --git a/test/CodeGen/ARM/2009-08-23-linkerprivate.ll b/test/CodeGen/ARM/2009-08-23-linkerprivate.ll new file mode 100644 index 00000000000..93fb151ca25 --- /dev/null +++ b/test/CodeGen/ARM/2009-08-23-linkerprivate.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-apple-darwin | FileCheck %s + +; ModuleID = '/Volumes/MacOS9/tests/WebKit/JavaScriptCore/profiler/ProfilerServer.mm' + +@"\01l_objc_msgSend_fixup_alloc" = linker_private hidden global i32 0, section "__DATA, __objc_msgrefs, coalesced", align 16 ; [#uses=0] + +; CHECK: .globl l_objc_msgSend_fixup_alloc +; CHECK: .weak_definition l_objc_msgSend_fixup_alloc diff --git a/test/CodeGen/Generic/2009-08-23-linkerprivate.ll b/test/CodeGen/PowerPC/2009-08-23-linkerprivate.ll similarity index 72% rename from test/CodeGen/Generic/2009-08-23-linkerprivate.ll rename to test/CodeGen/PowerPC/2009-08-23-linkerprivate.ll index b4150de7d1f..6fe33e89ce2 100644 --- a/test/CodeGen/Generic/2009-08-23-linkerprivate.ll +++ b/test/CodeGen/PowerPC/2009-08-23-linkerprivate.ll @@ -1,6 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-apple-darwin | FileCheck %s ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=ppc-apple-darwin | FileCheck %s -; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-apple-darwin | FileCheck %s ; ModuleID = '/Volumes/MacOS9/tests/WebKit/JavaScriptCore/profiler/ProfilerServer.mm' diff --git a/test/CodeGen/X86/2009-08-23-linkerprivate.ll b/test/CodeGen/X86/2009-08-23-linkerprivate.ll new file mode 100644 index 00000000000..615c9633d89 --- /dev/null +++ b/test/CodeGen/X86/2009-08-23-linkerprivate.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-apple-darwin | FileCheck %s + +; ModuleID = '/Volumes/MacOS9/tests/WebKit/JavaScriptCore/profiler/ProfilerServer.mm' + +@"\01l_objc_msgSend_fixup_alloc" = linker_private hidden global i32 0, section "__DATA, __objc_msgrefs, coalesced", align 16 ; [#uses=0] + +; CHECK: .globl l_objc_msgSend_fixup_alloc +; CHECK: .weak_definition l_objc_msgSend_fixup_alloc -- 2.34.1