[llvm] [llvm-debuginfo-analyzer] Add support for LLVM IR format. (PR #135440)

Javier Lopez-Gomez via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 3 08:01:22 PDT 2025


================
@@ -45,3 +45,14 @@ This file is a static library embedding the **test-codeview-msvc.o** object file
 It is generated by the "lib.exe" tool shipped with MSVC compiler.
 
 ```lib.exe /OUT:test-codeview-msvc.lib test-codeview-msvc.o```
+
+# IR Textual representation and bitcode files (Linux):
+
+## test-clang.ll
+
+```clang --target=x86_64-linux -S -w -emit-llvm -g test.cpp -o test-clang.ll```
+
+## test-clang.bc
+
+```clang --target=x86_64-linux -S -w -emit-llvm -g test.cpp -o test-clang.ll```
+```llvm-as test-clang.ll -o test-clang.bc```
----------------
jalopezg-git wrote:

```suggestion

```llvm-as test-clang.ll -o test-clang.bc```
```

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


More information about the llvm-commits mailing list