[llvm] [RISCV] Basic Objdump Mapping Symbol Support (PR #151452)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 01:50:06 PDT 2025
================
@@ -0,0 +1,88 @@
+# RUN: yaml2obj -o - %s \
+# RUN: | llvm-objdump -d - | FileCheck %s
----------------
jh7370 wrote:
```suggestion
# RUN: yaml2obj -o %t
# RUN: llvm-objdump -d %t | FileCheck %s
```
This is more normal in the tests I've seen and means the intermediate object can be inspected, if there's a failure.
https://github.com/llvm/llvm-project/pull/151452
More information about the llvm-commits
mailing list