diff --git a/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll b/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll new file mode 100644 index 00000000000..245c2f908bd --- /dev/null +++ b/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll @@ -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" +@uip_len = external global i16 ; [#uses=2] + +define void @uip_arp_arpin() nounwind { +entry: + %tmp = volatile load i16* @uip_len ; [#uses=1] + %cmp = icmp ult i16 %tmp, 42 ; [#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 +} diff --git a/test/CodeGen/MSP430/dg.exp b/test/CodeGen/MSP430/dg.exp new file mode 100644 index 00000000000..e4ea13a4064 --- /dev/null +++ b/test/CodeGen/MSP430/dg.exp @@ -0,0 +1,5 @@ +load_lib llvm.exp + +if { [llvm_supports_target MSP430] } { + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,c,cpp}]] +}