summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-14 18:51:18 +0000
committerChris Lattner <sabre@nondot.org>2010-03-14 18:51:18 +0000
commit5049f235929d289462762f0e1daf72ffd28fd28c (patch)
tree7109154d829e1c3f73610d642704ccc75de5ba48
parent6feb7e3325161ad431678e76ba7e423dd8ad335a (diff)
downloadbcm5719-llvm-5049f235929d289462762f0e1daf72ffd28fd28c.tar.gz
bcm5719-llvm-5049f235929d289462762f0e1daf72ffd28fd28c.zip
don't have i386-specific tests in CodeGen/Generic, PR6601.
llvm-svn: 98508
-rw-r--r--llvm/test/CodeGen/Generic/2007-04-13-SwitchLowerBadPhi.ll3
-rw-r--r--llvm/test/CodeGen/Generic/2007-11-21-UndeadIllegalNode.ll2
-rw-r--r--llvm/test/CodeGen/Generic/2007-12-17-InvokeAsm.ll2
-rw-r--r--llvm/test/CodeGen/Generic/2007-12-31-UnusedSelector.ll2
-rw-r--r--llvm/test/CodeGen/Generic/2008-08-07-PtrToInt-SmallerInt.ll2
-rw-r--r--llvm/test/CodeGen/Generic/2009-11-16-BadKillsCrash.ll2
-rw-r--r--llvm/test/CodeGen/Generic/GC/redundant_init.ll17
-rw-r--r--llvm/test/CodeGen/X86/2007-02-16-BranchFold.ll (renamed from llvm/test/CodeGen/Generic/2007-02-16-BranchFold.ll)0
-rw-r--r--llvm/test/CodeGen/X86/2007-05-05-Personality.ll (renamed from llvm/test/CodeGen/Generic/2007-05-05-Personality.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/alloc_loop.ll (renamed from llvm/test/CodeGen/Generic/GC/alloc_loop.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/argpromotion.ll (renamed from llvm/test/CodeGen/Generic/GC/argpromotion.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/badreadproto.ll (renamed from llvm/test/CodeGen/Generic/GC/badreadproto.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/badrootproto.ll (renamed from llvm/test/CodeGen/Generic/GC/badrootproto.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/badwriteproto.ll (renamed from llvm/test/CodeGen/Generic/GC/badwriteproto.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/deadargelim.ll (renamed from llvm/test/CodeGen/Generic/GC/deadargelim.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/dg.exp (renamed from llvm/test/CodeGen/Generic/GC/dg.exp)0
-rw-r--r--llvm/test/CodeGen/X86/GC/fat.ll (renamed from llvm/test/CodeGen/Generic/GC/fat.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/inline.ll (renamed from llvm/test/CodeGen/Generic/GC/inline.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/inline2.ll (renamed from llvm/test/CodeGen/Generic/GC/inline2.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/lower_gcroot.ll (renamed from llvm/test/CodeGen/Generic/GC/lower_gcroot.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/outside.ll (renamed from llvm/test/CodeGen/Generic/GC/outside.ll)0
-rw-r--r--llvm/test/CodeGen/X86/GC/simple_ocaml.ll (renamed from llvm/test/CodeGen/Generic/GC/simple_ocaml.ll)0
22 files changed, 0 insertions, 30 deletions
diff --git a/llvm/test/CodeGen/Generic/2007-04-13-SwitchLowerBadPhi.ll b/llvm/test/CodeGen/Generic/2007-04-13-SwitchLowerBadPhi.ll
index a0b1403cf8d..9c3c804aa75 100644
--- a/llvm/test/CodeGen/Generic/2007-04-13-SwitchLowerBadPhi.ll
+++ b/llvm/test/CodeGen/Generic/2007-04-13-SwitchLowerBadPhi.ll
@@ -1,9 +1,6 @@
; RUN: llc < %s -O0
; PR 1323
-; ModuleID = 'test.bc'
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "i686-apple-darwin8"
%struct.comp = type { i8*, i32, i8*, [3 x i8], i32 }
define void @regbranch() {
diff --git a/llvm/test/CodeGen/Generic/2007-11-21-UndeadIllegalNode.ll b/llvm/test/CodeGen/Generic/2007-11-21-UndeadIllegalNode.ll
index e220be6389d..3090857d964 100644
--- a/llvm/test/CodeGen/Generic/2007-11-21-UndeadIllegalNode.ll
+++ b/llvm/test/CodeGen/Generic/2007-11-21-UndeadIllegalNode.ll
@@ -1,7 +1,5 @@
; RUN: llc < %s -o -
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
-target triple = "i686-pc-linux-gnu"
%struct.RETURN = type { i32, i32 }
%struct.ada__finalization__controlled = type { %struct.system__finalization_root__root_controlled }
%struct.ada__streams__root_stream_type = type { %struct.ada__tags__dispatch_table* }
diff --git a/llvm/test/CodeGen/Generic/2007-12-17-InvokeAsm.ll b/llvm/test/CodeGen/Generic/2007-12-17-InvokeAsm.ll
index bd26481bd30..4cc1e7c181e 100644
--- a/llvm/test/CodeGen/Generic/2007-12-17-InvokeAsm.ll
+++ b/llvm/test/CodeGen/Generic/2007-12-17-InvokeAsm.ll
@@ -1,7 +1,5 @@
; RUN: llc < %s -enable-eh
-target triple = "i686-pc-linux-gnu"
-
define fastcc void @bc__support__high_resolution_time__initialize_clock_rate() {
entry:
invoke void asm "rdtsc\0A\09movl %eax, $0\0A\09movl %edx, $1", "=*imr,=*imr,~{dirflag},~{fpsr},~{flags},~{dx},~{ax}"( i32* null, i32* null )
diff --git a/llvm/test/CodeGen/Generic/2007-12-31-UnusedSelector.ll b/llvm/test/CodeGen/Generic/2007-12-31-UnusedSelector.ll
index fc9164f7c4a..d2e97a477b4 100644
--- a/llvm/test/CodeGen/Generic/2007-12-31-UnusedSelector.ll
+++ b/llvm/test/CodeGen/Generic/2007-12-31-UnusedSelector.ll
@@ -1,8 +1,6 @@
; RUN: llc < %s -enable-eh
; PR1833
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
-target triple = "i686-pc-linux-gnu"
%struct.__class_type_info_pseudo = type { %struct.__type_info_pseudo }
%struct.__type_info_pseudo = type { i8*, i8* }
@_ZTI2e1 = external constant %struct.__class_type_info_pseudo ; <%struct.__class_type_info_pseudo*> [#uses=1]
diff --git a/llvm/test/CodeGen/Generic/2008-08-07-PtrToInt-SmallerInt.ll b/llvm/test/CodeGen/Generic/2008-08-07-PtrToInt-SmallerInt.ll
index 4f95dfe8a73..00ca8c756b4 100644
--- a/llvm/test/CodeGen/Generic/2008-08-07-PtrToInt-SmallerInt.ll
+++ b/llvm/test/CodeGen/Generic/2008-08-07-PtrToInt-SmallerInt.ll
@@ -1,7 +1,5 @@
; RUN: llc < %s
; PR2603
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
-target triple = "i386-pc-linux-gnu"
%struct.A = type { i8 }
%struct.B = type { i8, [1 x i8] }
@Foo = constant %struct.A { i8 ptrtoint (i8* getelementptr ([1 x i8]* inttoptr (i32 17 to [1 x i8]*), i32 0, i32 -16) to i8) } ; <%struct.A*> [#uses=0]
diff --git a/llvm/test/CodeGen/Generic/2009-11-16-BadKillsCrash.ll b/llvm/test/CodeGen/Generic/2009-11-16-BadKillsCrash.ll
index a51c75d6222..22bd4d7e6a4 100644
--- a/llvm/test/CodeGen/Generic/2009-11-16-BadKillsCrash.ll
+++ b/llvm/test/CodeGen/Generic/2009-11-16-BadKillsCrash.ll
@@ -1,7 +1,5 @@
; RUN: llc < %s
; PR5495
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
-target triple = "i386-pc-linux-gnu"
%"struct.std::__ctype_abstract_base<wchar_t>" = type { %"struct.std::locale::facet" }
%"struct.std::basic_ios<char,std::char_traits<char> >" = type { %"struct.std::ios_base", %"struct.std::basic_ostream<char,std::char_traits<char> >"*, i8, i8, %"struct.std::basic_streambuf<char,std::char_traits<char> >"*, %"struct.std::ctype<char>"*, %"struct.std::__ctype_abstract_base<wchar_t>"*, %"struct.std::__ctype_abstract_base<wchar_t>"* }
diff --git a/llvm/test/CodeGen/Generic/GC/redundant_init.ll b/llvm/test/CodeGen/Generic/GC/redundant_init.ll
deleted file mode 100644
index 10c70e73105..00000000000
--- a/llvm/test/CodeGen/Generic/GC/redundant_init.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc < %s -march=x86 | \
-; RUN: ignore grep {movl..0} | count 0
-
-%struct.obj = type { i8*, %struct.obj* }
-
-declare void @g() gc "shadow-stack"
-
-define void @f(i8* %o) gc "shadow-stack" {
-entry:
- %root = alloca i8*
- call void @llvm.gcroot(i8** %root, i8* null)
- store i8* %o, i8** %root
- call void @g()
- ret void
-}
-
-declare void @llvm.gcroot(i8**, i8*)
diff --git a/llvm/test/CodeGen/Generic/2007-02-16-BranchFold.ll b/llvm/test/CodeGen/X86/2007-02-16-BranchFold.ll
index 6bf5631b4e3..6bf5631b4e3 100644
--- a/llvm/test/CodeGen/Generic/2007-02-16-BranchFold.ll
+++ b/llvm/test/CodeGen/X86/2007-02-16-BranchFold.ll
diff --git a/llvm/test/CodeGen/Generic/2007-05-05-Personality.ll b/llvm/test/CodeGen/X86/2007-05-05-Personality.ll
index c92783e5e4e..c92783e5e4e 100644
--- a/llvm/test/CodeGen/Generic/2007-05-05-Personality.ll
+++ b/llvm/test/CodeGen/X86/2007-05-05-Personality.ll
diff --git a/llvm/test/CodeGen/Generic/GC/alloc_loop.ll b/llvm/test/CodeGen/X86/GC/alloc_loop.ll
index fb78ba2cd10..fb78ba2cd10 100644
--- a/llvm/test/CodeGen/Generic/GC/alloc_loop.ll
+++ b/llvm/test/CodeGen/X86/GC/alloc_loop.ll
diff --git a/llvm/test/CodeGen/Generic/GC/argpromotion.ll b/llvm/test/CodeGen/X86/GC/argpromotion.ll
index c63ce222b86..c63ce222b86 100644
--- a/llvm/test/CodeGen/Generic/GC/argpromotion.ll
+++ b/llvm/test/CodeGen/X86/GC/argpromotion.ll
diff --git a/llvm/test/CodeGen/Generic/GC/badreadproto.ll b/llvm/test/CodeGen/X86/GC/badreadproto.ll
index 4fe90b90833..4fe90b90833 100644
--- a/llvm/test/CodeGen/Generic/GC/badreadproto.ll
+++ b/llvm/test/CodeGen/X86/GC/badreadproto.ll
diff --git a/llvm/test/CodeGen/Generic/GC/badrootproto.ll b/llvm/test/CodeGen/X86/GC/badrootproto.ll
index ff86d03c646..ff86d03c646 100644
--- a/llvm/test/CodeGen/Generic/GC/badrootproto.ll
+++ b/llvm/test/CodeGen/X86/GC/badrootproto.ll
diff --git a/llvm/test/CodeGen/Generic/GC/badwriteproto.ll b/llvm/test/CodeGen/X86/GC/badwriteproto.ll
index be81f842672..be81f842672 100644
--- a/llvm/test/CodeGen/Generic/GC/badwriteproto.ll
+++ b/llvm/test/CodeGen/X86/GC/badwriteproto.ll
diff --git a/llvm/test/CodeGen/Generic/GC/deadargelim.ll b/llvm/test/CodeGen/X86/GC/deadargelim.ll
index 176019020ad..176019020ad 100644
--- a/llvm/test/CodeGen/Generic/GC/deadargelim.ll
+++ b/llvm/test/CodeGen/X86/GC/deadargelim.ll
diff --git a/llvm/test/CodeGen/Generic/GC/dg.exp b/llvm/test/CodeGen/X86/GC/dg.exp
index f2005891a59..f2005891a59 100644
--- a/llvm/test/CodeGen/Generic/GC/dg.exp
+++ b/llvm/test/CodeGen/X86/GC/dg.exp
diff --git a/llvm/test/CodeGen/Generic/GC/fat.ll b/llvm/test/CodeGen/X86/GC/fat.ll
index d05ca3da819..d05ca3da819 100644
--- a/llvm/test/CodeGen/Generic/GC/fat.ll
+++ b/llvm/test/CodeGen/X86/GC/fat.ll
diff --git a/llvm/test/CodeGen/Generic/GC/inline.ll b/llvm/test/CodeGen/X86/GC/inline.ll
index 9da33aef8dd..9da33aef8dd 100644
--- a/llvm/test/CodeGen/Generic/GC/inline.ll
+++ b/llvm/test/CodeGen/X86/GC/inline.ll
diff --git a/llvm/test/CodeGen/Generic/GC/inline2.ll b/llvm/test/CodeGen/X86/GC/inline2.ll
index 15947056ee3..15947056ee3 100644
--- a/llvm/test/CodeGen/Generic/GC/inline2.ll
+++ b/llvm/test/CodeGen/X86/GC/inline2.ll
diff --git a/llvm/test/CodeGen/Generic/GC/lower_gcroot.ll b/llvm/test/CodeGen/X86/GC/lower_gcroot.ll
index c2d418ac50e..c2d418ac50e 100644
--- a/llvm/test/CodeGen/Generic/GC/lower_gcroot.ll
+++ b/llvm/test/CodeGen/X86/GC/lower_gcroot.ll
diff --git a/llvm/test/CodeGen/Generic/GC/outside.ll b/llvm/test/CodeGen/X86/GC/outside.ll
index 2968c6917ce..2968c6917ce 100644
--- a/llvm/test/CodeGen/Generic/GC/outside.ll
+++ b/llvm/test/CodeGen/X86/GC/outside.ll
diff --git a/llvm/test/CodeGen/Generic/GC/simple_ocaml.ll b/llvm/test/CodeGen/X86/GC/simple_ocaml.ll
index f765dc029da..f765dc029da 100644
--- a/llvm/test/CodeGen/Generic/GC/simple_ocaml.ll
+++ b/llvm/test/CodeGen/X86/GC/simple_ocaml.ll
OpenPOWER on IntegriCloud