[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / UpdateTestChecks / update_llc_test_checks / Inputs / asm-show-inst.ll
blobcd0c69c5163186730a80a2b300539a5542e087d9
1 ;; Check that we remove the exact MCInst number from --asm-verbose output
2 ; RUN: llc < %s -mtriple=i686-unknown-unknown --asm-show-inst | FileCheck %s --check-prefix=VERBOSE
3 ; RUN: llc < %s -mtriple=i686-unknown-unknown | FileCheck %s --check-prefix=CHECK
5 define i8 @add_i8(i8 %a) nounwind {
6   %add = add i8 %a, 2
7   ret i8 %add
10 define i32 @add_i32(i32 %a) nounwind {
11   %add = add i32 %a, 2
12   ret i32 %add