diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-26 02:46:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-26 02:46:23 +0000 |
commit | 6337d7b7c767d7e766d163bbf9cc967e3946b115 (patch) | |
tree | 6d3b2f5640685d716950e8a6230f2913ff3cc150 | |
parent | d2747054b400911677bba7d472a7e4bcf069c5b0 (diff) | |
download | bcm5719-llvm-6337d7b7c767d7e766d163bbf9cc967e3946b115.tar.gz bcm5719-llvm-6337d7b7c767d7e766d163bbf9cc967e3946b115.zip |
add alias support to bitcode
llvm-svn: 36460
-rw-r--r-- | llvm/include/llvm/Bitcode/LLVMBitCodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/include/llvm/Bitcode/LLVMBitCodes.h b/llvm/include/llvm/Bitcode/LLVMBitCodes.h index e8b2d7c22d8..922fbaf2a97 100644 --- a/llvm/include/llvm/Bitcode/LLVMBitCodes.h +++ b/llvm/include/llvm/Bitcode/LLVMBitCodes.h @@ -52,7 +52,10 @@ namespace bitc { // FUNCTION: [type, callingconv, isproto, linkage, alignment, section, // visibility] - MODULE_CODE_FUNCTION = 8 + MODULE_CODE_FUNCTION = 8, + + // ALIAS: [alias type, aliasee val#, linkage] + MODULE_CODE_ALIAS = 9 }; /// TYPE blocks have codes for each type primitive they use. |