Skip to content

Commit

Permalink
Make KDAlloc the default memory allocator
Browse files Browse the repository at this point in the history
  • Loading branch information
ccadar authored and MartinNowack committed Sep 11, 2023
1 parent 2e393db commit 9edf8e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Core/MemoryManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ llvm::cl::OptionCategory MemoryCat("Memory management options",

llvm::cl::opt<bool, true> DeterministicAllocation(
"kdalloc",
llvm::cl::desc("Allocate memory deterministically (default=false)"),
llvm::cl::location(MemoryManager::isDeterministic), llvm::cl::init(false),
llvm::cl::desc("Allocate memory deterministically (default=true)"),
llvm::cl::location(MemoryManager::isDeterministic), llvm::cl::init(true),
llvm::cl::cat(MemoryCat));

llvm::cl::opt<bool> DeterministicAllocationMarkAsUnneeded(
Expand Down

0 comments on commit 9edf8e8

Please sign in to comment.