diff options
author | Mark Seaborn <mseaborn@chromium.org> | 2013-08-23 16:39:55 -0700 |
---|---|---|
committer | Mark Seaborn <mseaborn@chromium.org> | 2013-08-23 16:39:55 -0700 |
commit | e2a4edb5a4bf44481c099a11f95e0d7ea8b46b61 (patch) | |
tree | 06b582772a30ed362f4195698e59c377d5e802c4 /include | |
parent | 9166d2f605b3f02b2f6c7e9477fefd3cdbf8be08 (diff) |
PNaCl bitcode: Remove support for string constant values
These are no longer used since we introduced the GLOBALVAR block for
PNaCl, in which global variable initialisers are flattened.
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3590
TEST=PNaCl toolchain trybots
Review URL: https://codereview.chromium.org/22903045
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h index 30ec3e4df0..85a7dea914 100644 --- a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h +++ b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h @@ -149,8 +149,8 @@ namespace naclbitc { CST_CODE_WIDE_INTEGER = 5, // WIDE_INTEGER: [n x intval] CST_CODE_FLOAT = 6, // FLOAT: [fpval] CST_CODE_AGGREGATE = 7, // AGGREGATE: [n x value number] - CST_CODE_STRING = 8, // STRING: [values] - CST_CODE_CSTRING = 9, // CSTRING: [values] + CST_CODE_STRING = 8, // Not used in PNaCl. + CST_CODE_CSTRING = 9, // Not used in PNaCl. CST_CODE_CE_BINOP = 10, // Not used in PNaCl. CST_CODE_CE_CAST = 11, // Not used in PNaCl. CST_CODE_CE_GEP = 12, // Not used in PNaCl. |