You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was introduced in LLVM 17.0 in llvm/llvm-project@a2620e0. See this post for the motivation behind DIAssignID. A small example of this in the wild can be seen here:
λ> parseBitCodeFromFile "test.bc" >>= putStrLn . either formatError show
unknown record code: 47
from:
METADATA_BLOCK
@main
FUNCTION_BLOCK
FUNCTION_BLOCK_ID
value symbol table
MODULE_BLOCK
Bitstream
The text was updated successfully, but these errors were encountered:
Adding support for `DIAssigID` is very straightforward, as it doessn't have any
fields to parse (aside from `isDistinct`).
This bumps the `llvm-pretty` submodule to bring in the related changes from
GaloisInc/llvm-pretty#131.
Fixes#258.
Adding support for `DIAssigID` is very straightforward, as it doessn't have any
fields to parse (aside from `isDistinct`).
This bumps the `llvm-pretty` submodule to bring in the related changes from
GaloisInc/llvm-pretty#131.
Fixes#258.
This was introduced in LLVM 17.0 in llvm/llvm-project@a2620e0. See this post for the motivation behind
DIAssignID
. A small example of this in the wild can be seen here:If you compile this with:
Then
llvm-pretty-bc-parser
will fail to load it:The text was updated successfully, but these errors were encountered: