Disable tests until I can figure out why they're failing on just two machines but...
[oota-llvm.git] / test / CodeGen / Blackfin / 2009-08-04-LowerExtract-Live.ll
1 ; RUN: llc < %s -march=bfin -join-liveintervals=0 -verify-machineinstrs
2
3 ; Provoke an error in LowerSubregsPass::LowerExtract where the live range of a
4 ; super-register is illegally extended.
5
6 define i16 @f(i16 %x1, i16 %x2, i16 %x3, i16 %x4) {
7   %y1 = add i16 %x1, 1
8   %y2 = add i16 %x2, 2
9   %y3 = add i16 %x3, 3
10   %y4 = add i16 %x4, 4
11   %z12 = add i16 %y1, %y2
12   %z34 = add i16 %y3, %y4
13   %p = add i16 %z12, %z34
14   ret i16 %p
15 }