[PATCH] D80752: [AArch64]: BFloat MatMul Intrinsics&CodeGen

Luke Geeson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 9 07:39:40 PDT 2020


LukeGeeson added a comment.

In D80752#2074882 <https://reviews.llvm.org/D80752#2074882>, @stuij wrote:

> For the backend tests, I suggest using `-asm-verbose=0` with llc to only print instructions and get rid of `// kill: ..` and friends. Use `update_cc_test_checks.py` again to regenerate the testing.


This isn't how to get rid of `kill` statements. In particular if you pass `-asm-verbose=0` to `llc` in the `RUN` statement then no `CHECK`s are generated, let alone `kill` statements.

Instead to get this desired result you run `llc` without that argument, and then manually remove these unnecessary `kill` lines. This is what I have done and this should fix this. Patch incoming


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D80752/new/

https://reviews.llvm.org/D80752





More information about the llvm-commits mailing list