Add NEON 'laned' operations. This fixes another bunch of gcc testsuite fails and
[oota-llvm.git] / test / CodeGen / Blackfin / switch.ll
1 ; RUN: llvm-as < %s | llc -march=bfin -verify-machineinstrs > %t
2
3 define i32 @foo(i32 %A, i32 %B, i32 %C) {
4 entry:
5         switch i32 %A, label %out [
6                 i32 1, label %bb
7                 i32 0, label %bb13
8         ]
9
10 bb:             ; preds = %entry
11         ret i32 1
12
13 bb13:           ; preds = %entry
14         ret i32 1
15
16 out:            ; preds = %entry
17         ret i32 0
18 }