File tree Expand file tree Collapse file tree 4 files changed +10
-16
lines changed
Expand file tree Collapse file tree 4 files changed +10
-16
lines changed Original file line number Diff line number Diff line change 11# Project exclude paths
2- /cmake-build-debug-clang /
3- /cmake-build-debug-wsl /
4- /cmake-build-debug /
5- /cmake-build-memorysanitizer /
6- /cmake-build-undefinedsanitizer /
7- /cmake-build-addresssanitizer /
8- /cmake-build-leaksanitizer /
9- /cmake-build-debug-wsl-clang /
2+ /cmake-build- * /
Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ include_directories(SYSTEM 3rdParty)
2626include_directories (src)
2727message (STATUS ${LLVM_INCLUDE_DIRS} )
2828add_definitions (${LLVM_DEFINITIONS} )
29- list (APPEND CMAKE_CXX_FLAGS "-pedantic -Wall -Wextra -fdiagnostics-color=always" )
29+ if (NOT MSVC )
30+ list (APPEND CMAKE_CXX_FLAGS "-pedantic -Wall -Wextra -fdiagnostics-color=always" )
31+ else ()
32+ add_compile_options (/w)
33+ endif ()
3034
3135llvm_map_components_to_libnames(llvm_libs Core ExecutionEngine MC MCJIT Object OrcJit Option RuntimeDyld Support native)
3236
Original file line number Diff line number Diff line change 22
33#include < algorithm>
44#include < regex>
5+ #include < sstream>
6+ #include < cctype>
57
68namespace
79{
Original file line number Diff line number Diff line change 1- #include < utility>
2-
3- #include < utility>
4-
5- #include < utility>
6-
71#include " Semantics.hpp"
82
93#include " ConstantEvaluator.hpp"
104#include " Syntax.hpp"
11-
125#include < algorithm>
136#include < map>
7+ #include < optional>
148#include < sstream>
159#include < utility>
1610#include < cassert>
11+ #include < array>
1712
1813const OpenCL::Semantics::Type& OpenCL::Semantics::ArrayType::getType () const
1914{
You can’t perform that action at this time.
0 commit comments