[llvm-commits] [llvm] r71392 - in /llvm/trunk/test/CodeGen/MSP430: ./ 2009-05-10-CyclicDAG.ll dg.exp

Anton Korobeynikov asl at math.spbu.ru
Sun May 10 07:48:44 PDT 2009


Author: asl
Date: Sun May 10 09:48:36 2009
New Revision: 71392

URL: http://llvm.org/viewvc/llvm-project?rev=71392&view=rev
Log:
Add MSP430 test for PR4136

Added:
    llvm/trunk/test/CodeGen/MSP430/
    llvm/trunk/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll
    llvm/trunk/test/CodeGen/MSP430/dg.exp

Added: llvm/trunk/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll?rev=71392&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll (added)
+++ llvm/trunk/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll Sun May 10 09:48:36 2009
@@ -0,0 +1,32 @@
+; RUN: llvm-as < %s | llc
+; PR4136
+
+target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
+target triple = "msp430-unknown-linux-gnu"
+ at uip_len = external global i16		; <i16*> [#uses=2]
+
+define void @uip_arp_arpin() nounwind {
+entry:
+	%tmp = volatile load i16* @uip_len		; <i16> [#uses=1]
+	%cmp = icmp ult i16 %tmp, 42		; <i1> [#uses=1]
+	volatile store i16 0, i16* @uip_len
+	br i1 %cmp, label %if.then, label %if.end
+
+if.then:		; preds = %entry
+	ret void
+
+if.end:		; preds = %entry
+	switch i16 0, label %return [
+		i16 256, label %sw.bb
+		i16 512, label %sw.bb18
+	]
+
+sw.bb:		; preds = %if.end
+	ret void
+
+sw.bb18:		; preds = %if.end
+	ret void
+
+return:		; preds = %if.end
+	ret void
+}

Added: llvm/trunk/test/CodeGen/MSP430/dg.exp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/MSP430/dg.exp?rev=71392&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/MSP430/dg.exp (added)
+++ llvm/trunk/test/CodeGen/MSP430/dg.exp Sun May 10 09:48:36 2009
@@ -0,0 +1,5 @@
+load_lib llvm.exp
+
+if { [llvm_supports_target MSP430] } {
+  RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,c,cpp}]]
+}





More information about the llvm-commits mailing list