diff --git a/deps/v8/BUILD.gn b/deps/v8/BUILD.gn index 75034b69a8a648..c30222b4a992ca 100644 --- a/deps/v8/BUILD.gn +++ b/deps/v8/BUILD.gn @@ -1583,7 +1583,7 @@ config("toolchain") { if (v8_current_cpu == "ppc64") { defines += [ "V8_TARGET_ARCH_PPC64" ] cflags += [ "-ffp-contract=off" ] - if (current_os == "aix" and !is_clang) { + if (current_os == "aix" && !is_clang) { cflags += [ # Work around AIX ceil, trunc and round oddities. "-mcpu=power5+", diff --git a/deps/v8/src/compiler/turboshaft/operations.h b/deps/v8/src/compiler/turboshaft/operations.h index 2059de599c10d5..2bc695998d6b69 100644 --- a/deps/v8/src/compiler/turboshaft/operations.h +++ b/deps/v8/src/compiler/turboshaft/operations.h @@ -526,7 +526,7 @@ class InputsRepFactory { }; }; -struct __attribute__((packed)) EffectDimensions { +struct __attribute__((packed)) EffectDimensions { // Produced by loads, consumed by operations that should not move before loads // because they change memory. bool load_heap_memory : 1;