diff options
author | Karl Schimpf <kschimpf@google.com> | 2013-08-02 13:32:27 -0700 |
---|---|---|
committer | Karl Schimpf <kschimpf@google.com> | 2013-08-02 13:32:27 -0700 |
commit | 39bd1f66ebd83185944cf08903d8abf80321c17d (patch) | |
tree | f24f67d037a3f3a989b822f9413bcf1e5ef56c86 /include | |
parent | 0fdd44084de8589343b099a4d1908f221e7bdc37 (diff) |
Remove unnecessary pointer casts on store instructions.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3544
R=mseaborn@chromium.org
Review URL: https://codereview.chromium.org/21964002
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h index 9b53e08ab8..b83bb0f95b 100644 --- a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h +++ b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h @@ -293,10 +293,7 @@ namespace naclbitc { // 21 is unused. // 22 is unused. FUNC_CODE_INST_VAARG = 23, // Not used in PNaCl. - // This store code encodes the pointer type, rather than the value type - // this is so information only available in the pointer type (e.g. address - // spaces) is retained. - FUNC_CODE_INST_STORE = 24, // STORE: [ptr, val, align, vol] + FUNC_CODE_INST_STORE = 24, // STORE: [ptr, val, align, vol] // 25 is unused. FUNC_CODE_INST_EXTRACTVAL = 26, // Not used in PNaCl. FUNC_CODE_INST_INSERTVAL = 27, // Not used in PNaCl. |