xref: /llvm-project/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/asm-show-inst.ll (revision f421659286af9ae2d4f01cd1f829832fb5c2bc8b)
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
4
5define i8 @add_i8(i8 %a) nounwind {
6  %add = add i8 %a, 2
7  ret i8 %add
8}
9
10define i32 @add_i32(i32 %a) nounwind {
11  %add = add i32 %a, 2
12  ret i32 %add
13}
14