[llvm] Add diagnostic help for inline asm operand constraint 'H' (PR #86910)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 28 02:52:04 PDT 2024


================
@@ -0,0 +1,9 @@
+; RUN: not llc -march x86 < %s 2> %t
+; RUN: FileCheck %s < %t
----------------
arsenm wrote:

Don't use a temporary file
```suggestion
; RUN: not llc -march x86 < %s 2>&1 | FileCheck %s
```

https://github.com/llvm/llvm-project/pull/86910


More information about the llvm-commits mailing list