diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-17 17:50:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-17 17:50:30 +0000 |
commit | 9d61dd9a088be975df4beb4632a39ed009bd0ef5 (patch) | |
tree | 4462be05f311d998e90ebf2a74d06f45d2541e17 /include/llvm/Bitcode | |
parent | 020a5a449f297ced1f0fed08fb81c5da87fb7c9a (diff) | |
download | external_llvm-9d61dd9a088be975df4beb4632a39ed009bd0ef5.zip external_llvm-9d61dd9a088be975df4beb4632a39ed009bd0ef5.tar.gz external_llvm-9d61dd9a088be975df4beb4632a39ed009bd0ef5.tar.bz2 |
Remove some "2" suffixes from the metadata enums now that "1" is gone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133269 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/LLVMBitCodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index 6ff2cc4..355f017 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -118,10 +118,10 @@ namespace bitc { // 5 is unused. METADATA_KIND = 6, // [n x [id, name]] // 7 is unused. - METADATA_NODE2 = 8, // NODE2: [n x (type num, value num)] - METADATA_FN_NODE2 = 9, // FN_NODE2: [n x (type num, value num)] - METADATA_NAMED_NODE2 = 10, // NAMED_NODE2: [n x mdnodes] - METADATA_ATTACHMENT2 = 11 // [m x [value, [n x [id, mdnode]]] + METADATA_NODE = 8, // NODE: [n x (type num, value num)] + METADATA_FN_NODE = 9, // FN_NODE: [n x (type num, value num)] + METADATA_NAMED_NODE = 10, // NAMED_NODE: [n x mdnodes] + METADATA_ATTACHMENT = 11 // [m x [value, [n x [id, mdnode]]] }; // The constants block (CONSTANTS_BLOCK_ID) describes emission for each // constant and maintains an implicit current type value. |