File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
83
83
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /bin" )
84
84
85
85
set (OPTIMIZE "-O3" CACHE STRING "Optimization level" )
86
- set (C_CXX_FLAGS "-Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wmissing-declarations -Woverloaded-virtual -pedantic-errors -Wno-deprecated" )
86
+ set (C_CXX_FLAGS "-Wall -Wno-narrowing - Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wmissing-declarations -Woverloaded-virtual -pedantic-errors -Wno-deprecated" )
87
87
if (OPENMP )
88
88
set (C_CXX_FLAGS "-fopenmp ${C_CXX_FLAGS} " )
89
89
endif (OPENMP )
Original file line number Diff line number Diff line change @@ -1932,7 +1932,7 @@ std::vector<ir::Stmt> LowererImplImperative::constructInnerLoopCasePreamble(ir::
1932
1932
for (size_t i = 0 ; i < coordComparisons.size (); ++i) {
1933
1933
Expr nonZeroCase;
1934
1934
if (coordComparisons[i].defined () && valueComparisons[i].defined ()) {
1935
- nonZeroCase = conjunction ({coordComparisons[i], valueComparisons[i]});
1935
+ nonZeroCase = taco::ir:: conjunction ({coordComparisons[i], valueComparisons[i]});
1936
1936
} else if (valueComparisons[i].defined ()) {
1937
1937
nonZeroCase = valueComparisons[i];
1938
1938
} else if (coordComparisons[i].defined ()) {
You can’t perform that action at this time.
0 commit comments