Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/v8/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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+",
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/src/compiler/turboshaft/operations.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading