Home | History | Annotate | Download | only in ARM
      1 ; RUN: not llc -O1 -mtriple=armv4t-none-none-eabi %s -o - 2>&1 | FileCheck %s
      2 
      3 ; CHECK: Cannot select: intrinsic %llvm.arm.ssat
      4 define i32 @ssat() nounwind {
      5   %tmp = call i32 @llvm.arm.ssat(i32 128, i32 1)
      6   ret i32 %tmp
      7 }
      8 
      9 declare i32 @llvm.arm.ssat(i32, i32) nounwind readnone
     10