Commit 8ff52750 authored by vogelheim's avatar vogelheim Committed by Commit bot

Reduce TokenDesc size by 20% on 64b platforms.

(40B -> 32B, due to alignment rules. Should be neutral on 32b platforms.)

BUG=v8:4947

Review-Url: https://codereview.chromium.org/2256183005
Cr-Commit-Position: refs/heads/master@{#38794}
parent 24cb21e3
......@@ -495,11 +495,11 @@ class Scanner {
// The current and look-ahead token.
struct TokenDesc {
Token::Value token;
Location location;
LiteralBuffer* literal_chars;
LiteralBuffer* raw_literal_chars;
int smi_value_;
Token::Value token;
};
static const int kCharacterLookaheadBufferSize = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment