Asiri Rathnayake | 1040a53 | 2015-10-19 11:44:24 +0000 | [diff] [blame] | 1 | ; RUN: not llc < %s -O1 -mtriple=armv6-none-none-eabi 2>&1 | FileCheck %s |
2 | |||||
3 | ; immediate argument < lower-bound | ||||
4 | ; CHECK: LLVM ERROR: Cannot select: intrinsic %llvm.arm.usat | ||||
5 | define i32 @usat1() nounwind { | ||||
6 | %tmp = call i32 @llvm.arm.usat(i32 128, i32 -1) | ||||
7 | ret i32 %tmp | ||||
8 | } | ||||
9 | |||||
10 | declare i32 @llvm.arm.usat(i32, i32) nounwind readnone |