mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 17:24:48 +00:00
Beginning of the Great Exception Handling Rewrite.
* Add a "landing pad" attribute to the BasicBlock. * Modify the bitcode reader and writer to handle said attribute. Later: The verifier will ensure that the landing pad attribute is used in the appropriate manner. I.e., not applied to the entry block, and applied only to basic blocks that are branched to via a `dispatch' instruction. (This is a work-in-progress.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -106,8 +106,9 @@ namespace bitc {
|
||||
|
||||
// The value symbol table only has one code (VST_ENTRY_CODE).
|
||||
enum ValueSymtabCodes {
|
||||
VST_CODE_ENTRY = 1, // VST_ENTRY: [valid, namechar x N]
|
||||
VST_CODE_BBENTRY = 2 // VST_BBENTRY: [bbid, namechar x N]
|
||||
VST_CODE_ENTRY = 1, // VST_ENTRY: [valid, namechar x N]
|
||||
VST_CODE_BBENTRY = 2, // VST_BBENTRY: [bbid, namechar x N]
|
||||
VST_CODE_LPADENTRY = 3 // VST_LPADENTRY: [lpadid, namechar x N]
|
||||
};
|
||||
|
||||
enum MetadataCodes {
|
||||
|
Reference in New Issue
Block a user