llvm/llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/custom-tool.ll.expected

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --tool llvm-extract
; RUN: llvm-extract -S --func=foo %s | FileCheck --check-prefixes=CHECK %s

define i32 @foo(i32 %x) {
; CHECK-LABEL: @foo(
; CHECK-NEXT:    [[Y:%.*]] = add i32 [[X:%.*]], 1
; CHECK-NEXT:    ret i32 [[Y]]
;
  %y = add i32 %x, 1
  ret i32 %y
}