[llvm-branch-commits] [llvm] [BOLT][test] Fix callcont-fallthru.s after #129481 (PR #135867)
Paschalis Mpeis via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Apr 30 05:34:25 PDT 2025
paschalis-mpeis wrote:
Great. A quick way to use an llvm tool could be:
```bash
llvm-objdump -d -j .plt %t | grep @plt
```
This produces output similar to what `nm --synthetic` produces (when it works):
```bash
0000000000001430 <puts at plt>:
```
You'll need ofc to tweak `link_fdata` to properly parse symbol+address:
https://github.com/llvm/llvm-project/blob/fb8d61d8163f1439749a62be614c09215fe65e9f/bolt/test/link_fdata.py#L96-L99
Not sure of any cleaner approach? (@yota9, @MaskRay)
https://github.com/llvm/llvm-project/pull/135867
More information about the llvm-branch-commits
mailing list