[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / UpdateTestChecks / update_test_checks / Inputs / argument_name_reuse.ll.plain.expected
blobe6cb25980a2f55e6b68ba7ce5575d6148072fa46
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -S | FileCheck %s
4 define i32 @reuse_arg_names(i32 %X, i32 %Y) {
5 ; CHECK-LABEL: @reuse_arg_names(
6 ; CHECK-NEXT:    [[Z:%.*]] = sub i32 [[X:%.*]], [[Y:%.*]]
7 ; CHECK-NEXT:    [[Q:%.*]] = add i32 [[Z]], [[Y]]
8 ; CHECK-NEXT:    ret i32 [[Q]]
10   %Z = sub i32 %X, %Y
11   %Q = add i32 %Z, %Y
12   ret i32 %Q