diff options
author | Victor Hernandez <vhernandez@apple.com> | 2010-01-10 07:14:18 +0000 |
---|---|---|
committer | Victor Hernandez <vhernandez@apple.com> | 2010-01-10 07:14:18 +0000 |
commit | 24e64df7ec25b55aa872c2ef33728dfbb8c353c4 (patch) | |
tree | 7bd02b0cd86413d8a5202b7356d5670522ec2c93 /include/llvm/Bitcode | |
parent | f4fb91181cbd3f63d487a2519c7f7be9d5e51709 (diff) | |
download | external_llvm-24e64df7ec25b55aa872c2ef33728dfbb8c353c4.zip external_llvm-24e64df7ec25b55aa872c2ef33728dfbb8c353c4.tar.gz external_llvm-24e64df7ec25b55aa872c2ef33728dfbb8c353c4.tar.bz2 |
Compute isFunctionLocal in MDNode ctor or via argument in new function getWhenValsUnresolved().
Document PFS argument to ParseValID() and ConvertGlobalOrMetadataValIDToValue().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/LLVMBitCodes.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index c037399..9bb50d4 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -111,10 +111,11 @@ namespace bitc { enum MetadataCodes { METADATA_STRING = 1, // MDSTRING: [values] METADATA_NODE = 2, // MDNODE: [n x (type num, value num)] - METADATA_NAME = 3, // STRING: [values] - METADATA_NAMED_NODE = 4, // NAMEDMDNODE: [n x mdnodes] - METADATA_KIND = 5, // [n x [id, name]] - METADATA_ATTACHMENT = 6 // [m x [value, [n x [id, mdnode]]] + METADATA_FN_NODE = 3, // FN_MDNODE: [n x (type num, value num)] + METADATA_NAME = 4, // STRING: [values] + METADATA_NAMED_NODE = 5, // NAMEDMDNODE: [n x mdnodes] + METADATA_KIND = 6, // [n x [id, name]] + METADATA_ATTACHMENT = 7 // [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. |