Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / InstSimplify / fold-vscale.ll
blobe72edf26836d73501700c2810c8069dfa1dd36da
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
4 define i64 @vscale_i64_range_none() #0 {
5 ; CHECK-LABEL: @vscale_i64_range_none(
6 ; CHECK-NEXT:    [[OUT:%.*]] = call i64 @llvm.vscale.i64()
7 ; CHECK-NEXT:    ret i64 [[OUT]]
9   %out = call i64 @llvm.vscale.i64()
10   ret i64 %out
13 define i64 @vscale_i64_range_1_1() #1 {
14 ; CHECK-LABEL: @vscale_i64_range_1_1(
15 ; CHECK-NEXT:    ret i64 1
17   %out = call i64 @llvm.vscale.i64()
18   ret i64 %out
21 define i32 @vscale_i32_range_2_2() #2 {
22 ; CHECK-LABEL: @vscale_i32_range_2_2(
23 ; CHECK-NEXT:    ret i32 2
25   %out = call i32 @llvm.vscale.i32()
26   ret i32 %out
29 define i64 @vscale_i64_range_2_4() #3 {
30 ; CHECK-LABEL: @vscale_i64_range_2_4(
31 ; CHECK-NEXT:    [[OUT:%.*]] = call i64 @llvm.vscale.i64()
32 ; CHECK-NEXT:    ret i64 [[OUT]]
34   %out = call i64 @llvm.vscale.i64()
35   ret i64 %out
38 ; Function Attrs: nofree nosync nounwind readnone willreturn
39 declare i64 @llvm.vscale.i64() #0
41 ; Function Attrs: nofree nosync nounwind readnone willreturn
42 declare i32 @llvm.vscale.i32() #0
44 attributes #0 = { nofree nosync nounwind readnone willreturn }
45 attributes #1 = { mustprogress nofree nosync nounwind uwtable vscale_range(1,1) }
46 attributes #2 = { mustprogress nofree nosync nounwind uwtable vscale_range(2,2) }
47 attributes #3 = { mustprogress nofree nosync nounwind uwtable vscale_range(2,4) }