diff options
| author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-04-10 06:55:45 +0000 |
|---|---|---|
| committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-04-10 06:55:45 +0000 |
| commit | d7e58640a5660d44ac12d1b0175bf6fe32db5b8d (patch) | |
| tree | 1a962a720f331027d10cfb2c758a0e5496db9c13 /polly/lib/Exchange/JSONExporter.cpp | |
| parent | 0ee50f6ee46902a568eaa3d8baaa2e99f892fb07 (diff) | |
| download | bcm5719-llvm-d7e58640a5660d44ac12d1b0175bf6fe32db5b8d.tar.gz bcm5719-llvm-d7e58640a5660d44ac12d1b0175bf6fe32db5b8d.zip | |
Update formatting to latest version of clang-format
llvm-svn: 179160
Diffstat (limited to 'polly/lib/Exchange/JSONExporter.cpp')
| -rw-r--r-- | polly/lib/Exchange/JSONExporter.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/polly/lib/Exchange/JSONExporter.cpp b/polly/lib/Exchange/JSONExporter.cpp index 402798805b3..ee0b66d862e 100644 --- a/polly/lib/Exchange/JSONExporter.cpp +++ b/polly/lib/Exchange/JSONExporter.cpp @@ -270,7 +270,7 @@ bool JSONImporter::runOnScop(Scop &scop) { isl_map *currentAccessMap = (*MI)->getAccessRelation(); if (isl_map_dim(newAccessMap, isl_dim_param) != - isl_map_dim(currentAccessMap, isl_dim_param)) { + isl_map_dim(currentAccessMap, isl_dim_param)) { errs() << "JScop file changes the number of parameter dimensions\n"; isl_map_free(currentAccessMap); isl_map_free(newAccessMap); @@ -332,20 +332,17 @@ INITIALIZE_PASS_BEGIN(JSONExporter, "polly-export-jscop", "Polly - Export Scops as JSON" " (Writes a .jscop file for each Scop)", false, false); -INITIALIZE_PASS_DEPENDENCY(Dependences); +INITIALIZE_PASS_DEPENDENCY(Dependences) INITIALIZE_PASS_END(JSONExporter, "polly-export-jscop", "Polly - Export Scops as JSON" " (Writes a .jscop file for each Scop)", false, false) - // typedef to make clang-format introduce a linebreak - typedef int clangformatdef; - INITIALIZE_PASS_BEGIN(JSONImporter, "polly-import-jscop", "Polly - Import Scops from JSON" " (Reads a .jscop file for each Scop)", false, false); -INITIALIZE_PASS_DEPENDENCY(Dependences); +INITIALIZE_PASS_DEPENDENCY(Dependences) INITIALIZE_PASS_END(JSONImporter, "polly-import-jscop", "Polly - Import Scops from JSON" " (Reads a .jscop file for each Scop)", |

