diff options
author | Mark Seaborn <mseaborn@chromium.org> | 2013-08-23 16:47:37 -0700 |
---|---|---|
committer | Mark Seaborn <mseaborn@chromium.org> | 2013-08-23 16:47:37 -0700 |
commit | bbdf86f69eebaad59f7338f645916ed984a88861 (patch) | |
tree | 08df11cc782011516d097ceb8c3745592892b51b /include | |
parent | e2a4edb5a4bf44481c099a11f95e0d7ea8b46b61 (diff) |
PNaCl bitcode: Remove support for TYPE_CODE_FUNCTION_OLD
PNaCl uses TYPE_CODE_FUNCTION instead, as you'd expect.
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3590
TEST=PNaCl toolchain trybots
Review URL: https://codereview.chromium.org/22819015
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h index 85a7dea914..ebe5a972e5 100644 --- a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h +++ b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h @@ -87,8 +87,7 @@ namespace naclbitc { TYPE_CODE_INTEGER = 7, // INTEGER: [width] TYPE_CODE_POINTER = 8, // POINTER: [pointee type] - TYPE_CODE_FUNCTION_OLD = 9, // FUNCTION: [vararg, attrid, retty, - // paramty x N] + TYPE_CODE_FUNCTION_OLD = 9, // Not used in PNaCl. TYPE_CODE_HALF = 10, // HALF |