diff --git a/cpu/cpujit.py b/cpu/cpujit.py index cd1f0b2eb1c1eb59a91ed48210bb66e7712439a2..58bc7ee2e326cf9e614fbbc04f5939dc438d79e6 100644 --- a/cpu/cpujit.py +++ b/cpu/cpujit.py @@ -78,7 +78,7 @@ def compileAndLoad(kernelFunctionNode): env.update(configEnv) subprocess.call(compilerCmd, env=env) - showAssembly = False + showAssembly = True if showAssembly: assemblyFile = os.path.join(tmpDir, "assembly.s") compilerCmd = [CONFIG['compiler'], '-S', '-o', assemblyFile, srcFile] + CONFIG['flags'].split()