14 lines · plain
1;; Check that we remove the exact MCInst number from --asm-verbose output2; RUN: llc < %s -mtriple=i686-unknown-unknown --asm-show-inst | FileCheck %s --check-prefix=VERBOSE3; RUN: llc < %s -mtriple=i686-unknown-unknown | FileCheck %s --check-prefix=CHECK4 5define i8 @add_i8(i8 %a) nounwind {6 %add = add i8 %a, 27 ret i8 %add8}9 10define i32 @add_i32(i32 %a) nounwind {11 %add = add i32 %a, 212 ret i32 %add13}14