[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Verifier / speculatable-callsite.ll
blob1dd34a5055c00bf798a484e4c10c8dd19d2e02ff
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 @speculatable() #0
17   ret float %ret
20 attributes #0 = { speculatable }