summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/swr/rasterizer/jitter
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2017-05-01 17:26:19 -0500
committerTim Rowley <[email protected]>2017-05-30 17:20:39 -0500
commit4c235233652890c7b2f9c100fe7a7021c94ca173 (patch)
tree052ed8a9e1961fb7bd6853f6fff6eed21f52cc9a /src/gallium/drivers/swr/rasterizer/jitter
parent7e35777624aa2fd3c27f8effb5d070d4804c5ee6 (diff)
swr/rast: silence write of cfg graph
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/jitter')
-rw-r--r--src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
index 2009db09feb..49b06f738f4 100644
--- a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
+++ b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
@@ -264,10 +264,10 @@ void JitManager::DumpToFile(Function *f, const char *fileName)
#endif
fd.flush();
- raw_fd_ostream fd_cfg(fName, EC, llvm::sys::fs::F_Text);
- WriteGraph(fd_cfg, (const Function*)f);
+ //raw_fd_ostream fd_cfg(fName, EC, llvm::sys::fs::F_Text);
+ //WriteGraph(fd_cfg, (const Function*)f);
- fd_cfg.flush();
+ //fd_cfg.flush();
}
}