Skip to content
Merged
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 .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
license_header_check_project_name: "Swift"
api_breakage_check_enabled: false
unacceptable_language_check_enabled: false
unacceptable_language_check_enabled: true
license_header_check_enabled: false
broken_symlink_check_enabled: false
format_check_enabled: false
2 changes: 1 addition & 1 deletion Guest/Sources/dlmalloc/src/dlmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// WebAssembly doesn't support shrinking linear memory.
#define MORECORE_CANNOT_TRIM 1

// Disable sanity checks to reduce code size.
// Disable checks to reduce code size.
#define ABORT __builtin_unreachable()

// If threads are enabled, enable support for threads.
Expand Down
3 changes: 1 addition & 2 deletions Guest/Sources/dlmalloc/src/upstream_malloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -3131,8 +3131,7 @@ static int init_mparams(void) {
}
#endif /* WIN32 */

/* Sanity-check configuration:
size_t must be unsigned and as wide as pointer type.
/* size_t must be unsigned and as wide as pointer type.
ints must be at least 4 bytes.
alignment must be at least 8.
Alignment, min chunk size, and page size must all be powers of 2.
Expand Down