diff options
| author | Tobias Grosser <tobias@grosser.es> | 2016-07-14 10:51:47 +0000 | 
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2016-07-14 10:51:47 +0000 | 
| commit | 681bd5688faaf5b749287a19b120865a0ec732dc (patch) | |
| tree | edd75e73f2a309bf31bfcc63067a536f504ab534 | |
| parent | c54f9c4851cddf7462e70c7793e2b0b9ca259937 (diff) | |
| download | bcm5719-llvm-681bd5688faaf5b749287a19b120865a0ec732dc.tar.gz bcm5719-llvm-681bd5688faaf5b749287a19b120865a0ec732dc.zip  | |
GPGPU: Do not dump schedule by default
llvm-svn: 275395
| -rw-r--r-- | polly/lib/CodeGen/PPCGCodeGeneration.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/PPCGCodeGeneration.cpp b/polly/lib/CodeGen/PPCGCodeGeneration.cpp index 43a651aebf5..cd84d3c2090 100644 --- a/polly/lib/CodeGen/PPCGCodeGeneration.cpp +++ b/polly/lib/CodeGen/PPCGCodeGeneration.cpp @@ -39,7 +39,7 @@ using namespace llvm;  static cl::opt<bool> DumpSchedule("polly-acc-dump-schedule",                                    cl::desc("Dump the computed GPU Schedule"), -                                  cl::Hidden, cl::init(true), cl::ZeroOrMore, +                                  cl::Hidden, cl::init(false), cl::ZeroOrMore,                                    cl::cat(PollyCategory));  namespace {  | 

