From: Chris Lattner Date: Tue, 8 May 2007 05:38:32 +0000 (+0000) Subject: update comments, no functionality change X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=7adb53e7b1a4ec0cda17cbc946da44147c141d69;p=oota-llvm.git update comments, no functionality change git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36929 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index d8487995307..24e6729962f 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -50,8 +50,8 @@ namespace bitc { // linkage, alignment, section, visibility, threadlocal] MODULE_CODE_GLOBALVAR = 7, - // FUNCTION: [type, callingconv, isproto, linkage, alignment, section, - // visibility] + // FUNCTION: [type, callingconv, isproto, linkage, paramattrs, alignment, + // section, visibility] MODULE_CODE_FUNCTION = 8, // ALIAS: [alias type, aliasee val#, linkage] @@ -176,7 +176,7 @@ namespace bitc { FUNC_CODE_INST_RET = 10, // RET: [opty,opval] FUNC_CODE_INST_BR = 11, // BR: [bb#, bb#, cond] or [bb#] FUNC_CODE_INST_SWITCH = 12, // SWITCH: [opty, opval, n, n x ops] - FUNC_CODE_INST_INVOKE = 13, // INVOKE: [fnty, op0,op1,op2, ...] + FUNC_CODE_INST_INVOKE = 13, // INVOKE: [attr, fnty, op0,op1, ...] FUNC_CODE_INST_UNWIND = 14, // UNWIND FUNC_CODE_INST_UNREACHABLE = 15, // UNREACHABLE @@ -186,7 +186,7 @@ namespace bitc { FUNC_CODE_INST_ALLOCA = 19, // ALLOCA: [instty, op, align] FUNC_CODE_INST_LOAD = 20, // LOAD: [opty, op, align, vol] FUNC_CODE_INST_STORE = 21, // STORE: [ptrty,val,ptr, align, vol] - FUNC_CODE_INST_CALL = 22, // CALL: [fnty, fnid, arg0, arg1...] + FUNC_CODE_INST_CALL = 22, // CALL: [attr, fnty, fnid, args...] FUNC_CODE_INST_VAARG = 23 // VAARG: [valistty, valist, instty] }; } // End bitc namespace