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