File tree Expand file tree Collapse file tree 4 files changed +109
-172
lines changed Expand file tree Collapse file tree 4 files changed +109
-172
lines changed Original file line number Diff line number Diff line change @@ -176,3 +176,8 @@ def error_expect_function_param : Error<"expected function parameter name">;
176
176
177
177
def note_record_member_unknown: Error<"record has no member '%0'">;
178
178
def note_declared_here: Note<"declared here">;
179
+
180
+ def warn_loop_swapping_diff_reduction: Warning<"unable to swap loops due to the different reduction types">;
181
+ def warn_loop_swapping_true_anti_dependence: Warning<"unable to swap loops due to the true or anti dependence">;
182
+ def warn_loop_swapping_missing_loop: Warning<"not enough loops for swapping">;
183
+ def warn_loop_swapping_redundant_loop: Warning<"too many loops for swapping, ignore redundant">;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ ModulePass * createClangStructureReplacementPass();
92
92
// / Initialize a pass to perform replacement of access to structure fields
93
93
// / with separate variables.
94
94
void initializeClangStructureReplacementPassPass (PassRegistry &Registry);
95
- }
95
+
96
96
// / Creates a pass to perform swapping of loops.
97
97
FunctionPass * createClangLoopSwapping ();
98
98
You can’t perform that action at this time.
0 commit comments