Loading...
--- dyld/dyld-1122.1/cache_builder/BuilderConfig.cpp
+++ dyld/dyld-1066.8/cache_builder/BuilderConfig.cpp
@@ -42,7 +42,6 @@
{
this->printTimers = options.timePasses;
this->printStats = options.stats;
- this->printDebug = options.debug;
}
void cache_builder::Logger::log(const char* format, ...) const
@@ -86,7 +85,7 @@
// x86_64 uses discontiguous mappings
this->discontiguous.emplace();
- if ( options.isSimulator() ) {
+ if ( options.isSimultor() ) {
// The simulator has fixed addresses
this->discontiguous->simTextSize = CacheVMSize(1.5_GB);
this->discontiguous->simDataSize = CacheVMSize(1_GB);
@@ -104,7 +103,7 @@
this->contiguous->subCacheStubsLimit = CacheVMSize(110_MB);
}
- if ( !options.isSimulator() ) {
+ if ( !options.isSimultor() ) {
// Devices always get large layout. Simulators get the regular layout
this->large.emplace();
@@ -147,7 +146,7 @@
SlideInfo::SlideInfo(const BuilderOptions& options, const Layout& layout)
{
// Compute slide info. Note the simulator doesn't slide
- if ( options.isSimulator() )
+ if ( options.isSimultor() )
return;
std::string_view archName = options.archs.name();