- thumbv6 shouldn't imply +thumb2. Cortex-M0 doesn't suppport 32-bit Thumb2
[oota-llvm.git] / test / CodeGen / Thumb / 2012-04-26-M0ISelBug.ll
1 ; RUN: llc -mtriple=thumbv6-apple-ios -mcpu=cortex-m0 < %s | FileCheck %s
2 ; Cortex-M0 doesn't have 32-bit Thumb2 instructions (except for dmb, mrs, etc.)
3 ; rdar://11331541
4
5 define i32 @t(i32 %a) nounwind {
6 ; CHECK: t:
7 ; CHECK: asrs r1, r0, #31
8 ; CHECK: eors r1, r0
9   %tmp0 = ashr i32 %a, 31
10   %tmp1 = xor i32 %tmp0, %a
11   ret i32 %tmp1
12 }