Chromium Code Reviews| Index: src/compiler/code-assembler.h |
| diff --git a/src/compiler/code-assembler.h b/src/compiler/code-assembler.h |
| index f7333bb59d682fec304503a8a447355fb8bf20af..e0e360aa0ffce07ac8cc44f1bc9f52052b224ee5 100644 |
| --- a/src/compiler/code-assembler.h |
| +++ b/src/compiler/code-assembler.h |
| @@ -244,6 +244,8 @@ class CodeAssembler { |
| Node* TruncateFloat64ToInt32JavaScript(Node* a); |
| // No-op on 32-bit, otherwise zero extend. |
| Node* ChangeUint32ToWord(Node* value); |
| + // No-op on 32-bit, otherwise sign extend. |
| + Node* ChangeInt32ToWord(Node* value); |
|
Benedikt Meurer
2016/04/21 09:50:50
Rename to ChangeInt32ToIntPtr. We use "word" when
neis
2016/04/21 11:30:15
Done.
|
| // Projections |
| Node* Projection(int index, Node* value); |