diff options
Diffstat (limited to 'include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h')
-rw-r--r-- | include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h index 59fadf26a2..32e3920b7d 100644 --- a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h +++ b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h @@ -91,8 +91,14 @@ namespace naclbitc { TYPE_CODE_HALF = 10, // Not used in PNaCl. - TYPE_CODE_ARRAY = 11, // ARRAY: [numelts, eltty] - TYPE_CODE_VECTOR = 12, // VECTOR: [numelts, eltty] + TYPE_CODE_ARRAY = 11, // PNaCl version 1 (early versions only) + // ARRAY: [numelts, eltty] + // Not used in PNaCl otherwise (i.e. + // PNaCl versions 1+). + TYPE_CODE_VECTOR = 12, // PNaCl version 1 (early versions only) + // VECTOR: [numelts, eltty] + // Not used in PNaCl otherwise (i.e. + // PNaCl versions 1+). // These are not with the other floating point types because they're // a late addition, and putting them in the right place breaks |