From 56cdf7b39d370b8a450a3b7720200ed68176e8fa Mon Sep 17 00:00:00 2001 From: Luca Colagrande Date: Fri, 19 Jul 2024 11:47:04 +0200 Subject: [PATCH] util: Disable Banshee simulation traces (#167) --- util/sim/Simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/sim/Simulation.py b/util/sim/Simulation.py index 0b0ab8396..58e1b200e 100644 --- a/util/sim/Simulation.py +++ b/util/sim/Simulation.py @@ -293,4 +293,4 @@ def __init__(self, banshee_cfg=None, **kwargs): """ super().__init__(**kwargs) self.cmd = ['banshee', '--no-opt-llvm', '--no-opt-jit', '--configuration', - str(banshee_cfg), '--trace', str(self.elf)] + str(banshee_cfg), str(self.elf)]