summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/test-code-layout.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/cctest/test-code-layout.cc')
-rw-r--r--deps/v8/test/cctest/test-code-layout.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/test/cctest/test-code-layout.cc b/deps/v8/test/cctest/test-code-layout.cc
index caeeaf3283..7f6fa58b17 100644
--- a/deps/v8/test/cctest/test-code-layout.cc
+++ b/deps/v8/test/cctest/test-code-layout.cc
@@ -15,8 +15,8 @@ TEST(CodeLayoutWithoutUnwindingInfo) {
HandleScope handle_scope(CcTest::i_isolate());
// "Hello, World!" in ASCII.
- byte buffer_array[13] = {0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20,
- 0x57, 0x6f, 0x72, 0x6c, 0x64, 0x21};
+ byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
+ 0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
byte* buffer = &buffer_array[0];
int buffer_size = sizeof(buffer_array);
@@ -46,11 +46,11 @@ TEST(CodeLayoutWithUnwindingInfo) {
HandleScope handle_scope(CcTest::i_isolate());
// "Hello, World!" in ASCII.
- byte buffer_array[13] = {0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20,
- 0x57, 0x6f, 0x72, 0x6c, 0x64, 0x21};
+ byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
+ 0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
// "JavaScript" in ASCII.
- byte unwinding_info_array[10] = {0x4a, 0x61, 0x76, 0x61, 0x53,
+ byte unwinding_info_array[10] = {0x4A, 0x61, 0x76, 0x61, 0x53,
0x63, 0x72, 0x69, 0x70, 0x74};
byte* buffer = &buffer_array[0];