Index: src/ia32/macro-assembler-ia32.cc |
=================================================================== |
--- src/ia32/macro-assembler-ia32.cc (revision 10402) |
+++ src/ia32/macro-assembler-ia32.cc (working copy) |
@@ -1387,7 +1387,7 @@ |
add(scratch1, Immediate(kObjectAlignmentMask)); |
and_(scratch1, Immediate(~kObjectAlignmentMask)); |
- // Allocate ascii string in new space. |
+ // Allocate ASCII string in new space. |
AllocateInNewSpace(SeqAsciiString::kHeaderSize, |
times_1, |
scratch1, |
@@ -1415,7 +1415,7 @@ |
Label* gc_required) { |
ASSERT(length > 0); |
- // Allocate ascii string in new space. |
+ // Allocate ASCII string in new space. |
AllocateInNewSpace(SeqAsciiString::SizeFor(length), |
result, |
scratch1, |
@@ -2464,7 +2464,7 @@ |
movzx_b(scratch1, FieldOperand(scratch1, Map::kInstanceTypeOffset)); |
movzx_b(scratch2, FieldOperand(scratch2, Map::kInstanceTypeOffset)); |
- // Check that both are flat ascii strings. |
+ // Check that both are flat ASCII strings. |
const int kFlatAsciiStringMask = |
kIsNotStringMask | kStringRepresentationMask | kStringEncodingMask; |
const int kFlatAsciiStringTag = ASCII_STRING_TYPE; |