summaryrefslogtreecommitdiff
path: root/deps/v8/src/runtime/runtime-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/runtime/runtime-utils.h')
-rw-r--r--deps/v8/src/runtime/runtime-utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/runtime/runtime-utils.h b/deps/v8/src/runtime/runtime-utils.h
index 4a80ff5d40..e58934ba33 100644
--- a/deps/v8/src/runtime/runtime-utils.h
+++ b/deps/v8/src/runtime/runtime-utils.h
@@ -122,8 +122,8 @@ static inline ObjectPair MakePair(Object* x, Object* y) {
}
#elif V8_TARGET_ARCH_X64 && V8_TARGET_ARCH_32_BIT
// For x32 a 128-bit struct return is done as rax and rdx from the ObjectPair
-// are used in the full codegen and Crankshaft compiler. An alternative is
-// using uint64_t and modifying full codegen and Crankshaft compiler.
+// are used in generated code. An alternative is using uint64_t and modifying
+// generated code.
struct ObjectPair {
Object* x;
uint32_t x_upper;