diff --git a/macaw-ppc/tests/Shared.hs b/macaw-ppc/tests/Shared.hs index 0de5613f..bc76dee4 100644 --- a/macaw-ppc/tests/Shared.hs +++ b/macaw-ppc/tests/Shared.hs @@ -48,10 +48,10 @@ withMemory _ e k = Left err -> C.throwM (MemoryLoadError err) Right (_sim, mem) -> k mem where - loadCfg = MM.LoadOptions { MM.loadStyleOverride = Just MM.LoadBySegment - , MM.includeBSS = False - , MM.loadRegionIndex = Just 0 - } + loadCfg = MM.defaultLoadOptions + { MM.loadStyleOverride = Just MM.LoadBySegment + , MM.loadRegionIndex = Just 0 + } data ElfException = MemoryLoadError String deriving (Typeable, Show)