Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / UpdateTestChecks / update_test_checks / Inputs / basic.ll
blobce02f72f0615d7ed6703c88b3e2ec714c08d7e91
1 ; Example input for update_test_checks (taken from test/Transforms/InstSimplify/add.ll)
2 ; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
4 define i32 @common_sub_operand(i32 %X, i32 %Y) {
5 ; CHECK-LABEL: @common_sub_operand(
6 ; CHECK-NEXT:    ret i32 [[X:%.*]]
8   %Z = sub i32 %X, %Y
9   %Q = add i32 %Z, %Y
10   ret i32 %Q
13 define i32 @negated_operand(i32 %x) {
14 ; CHECK-LABEL: @negated_operand(
15 ; CHECK-NEXT:    ret i32 0
17   %negx = sub i32 0, %x
18   %r = add i32 %negx, %x
19   ret i32 %r
22 define <2 x i32> @negated_operand_commute_vec(<2 x i32> %x) {
23 ; CHECK-LABEL: @negated_operand_commute_vec(
24 ; CHECK-NEXT:    ret <2 x i32> zeroinitializer
26   %negx = sub <2 x i32> zeroinitializer, %x
27   %r = add <2 x i32> %x, %negx
28   ret <2 x i32> %r
31 define i8 @knownnegation(i8 %x, i8 %y) {
32 ; CHECK-LABEL: @knownnegation(
33 ; CHECK-NEXT:    ret i8 0
35   %xy = sub i8 %x, %y
36   %yx = sub i8 %y, %x
37   %r = add i8 %xy, %yx
38   ret i8 %r
41 define <2 x i8> @knownnegation_commute_vec(<2 x i8> %x, <2 x i8> %y) {
42 ; CHECK-LABEL: @knownnegation_commute_vec(
43 ; CHECK-NEXT:    ret <2 x i8> zeroinitializer
45   %xy = sub <2 x i8> %x, %y
46   %yx = sub <2 x i8> %y, %x
47   %r = add <2 x i8> %yx, %xy
48   ret <2 x i8> %r
51 define i32 @nameless_value(i32 %X) {
52 ; CHECK-LABEL: @nameless_value(
53 ; CHECK-NEXT:    [[TMP1:%.*]] = sub i32 42, [[X:%.*]]
54 ; CHECK-NEXT:    ret i32 [[TMP1]]
56   %1 = sub i32 42, %X
57   ret i32 %1