[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Verifier / speculatable-callsite.ll
blobfafed831cf96f7438eb4528a69b2be9946518255
1 ; RUN: llvm-as %s -o /dev/null
3 ; Make sure speculatable is accepted on a call site if the declaration
4 ; is also speculatable.
6 declare i32 @speculatable() #0
8 ; Make sure this the attribute is accepted on the call site if the
9 ; declaration matches.
10 define i32 @call_speculatable() {
11   %ret = call i32 @speculatable() #0
12   ret i32 %ret
15 define float @call_bitcast_speculatable() {
16   %ret = call float bitcast (i32()* @speculatable to float()*)() #0
17   ret float %ret
20 attributes #0 = { speculatable }