summaryrefslogtreecommitdiff
path: root/test/CodeGen/CBackend
diff options
context:
space:
mode:
authorGalina Kistanova <gkistanova@gmail.com>2011-06-18 00:59:37 +0000
committerGalina Kistanova <gkistanova@gmail.com>2011-06-18 00:59:37 +0000
commita566ec94e64855c2e651d161caaa27f9013b48fc (patch)
tree4180d2368824fb7ab278992eaf48c735203272fa /test/CodeGen/CBackend
parent3b6434e360315849a65b1ac85e16d160131a77a4 (diff)
downloadllvm-a566ec94e64855c2e651d161caaa27f9013b48fc.tar.gz
llvm-a566ec94e64855c2e651d161caaa27f9013b48fc.tar.bz2
llvm-a566ec94e64855c2e651d161caaa27f9013b48fc.tar.xz
Moved to the right place.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/CBackend')
-rw-r--r--test/CodeGen/CBackend/X86/2008-06-04-IndirectMem.ll12
-rw-r--r--test/CodeGen/CBackend/X86/dg.exp5
2 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/CBackend/X86/2008-06-04-IndirectMem.ll b/test/CodeGen/CBackend/X86/2008-06-04-IndirectMem.ll
new file mode 100644
index 0000000000..054a3cad90
--- /dev/null
+++ b/test/CodeGen/CBackend/X86/2008-06-04-IndirectMem.ll
@@ -0,0 +1,12 @@
+; RUN: llc < %s -march=c | grep {"m"(llvm_cbe_newcw))}
+; PR2407
+
+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"
+
+define void @foo() {
+ %newcw = alloca i16 ; <i16*> [#uses=2]
+ call void asm sideeffect "fldcw $0", "*m,~{dirflag},~{fpsr},~{flags}"( i16*
+%newcw ) nounwind
+ ret void
+}
diff --git a/test/CodeGen/CBackend/X86/dg.exp b/test/CodeGen/CBackend/X86/dg.exp
new file mode 100644
index 0000000000..833bcc5702
--- /dev/null
+++ b/test/CodeGen/CBackend/X86/dg.exp
@@ -0,0 +1,5 @@
+load_lib llvm.exp
+
+if { [llvm_supports_target X86] && [llvm_gcc_supports c] } {
+ RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,c,cpp,s}]]
+}