mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
57cdb5383f
The saturation instructions appeared in v6T2, with DSP extensions, but they were being accepted / generated on any, with the new introduction of the saturation detection in the back-end. This commit restricts the usage to DSP-enable only cores. Fixes PR28607. llvm-svn: 276701
10 lines
294 B
LLVM
10 lines
294 B
LLVM
; RUN: not llc -O1 -mtriple=armv4t-none-none-eabi %s -o - 2>&1 | FileCheck %s
|
|
|
|
; CHECK: LLVM ERROR: Cannot select: intrinsic %llvm.arm.usat
|
|
define i32 @usat1() nounwind {
|
|
%tmp = call i32 @llvm.arm.usat(i32 128, i32 31)
|
|
ret i32 %tmp
|
|
}
|
|
|
|
declare i32 @llvm.arm.usat(i32, i32) nounwind readnone
|