[PATCH] D120659: Cleanup includes: LLVMAnalysis
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 1 11:05:50 PST 2022
fhahn added a comment.
It looks like this commit may be causing a build error with EXPENSIVE_CHECKS enabled. It would be great if you could take a look.
https://green.lab.llvm.org/green/job/clang-stage1-cmake-RA-expensive/21961/console
FAILED: lib/Analysis/CMakeFiles/LLVMAnalysis.dir/LazyCallGraph.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DBUILD_EXAMPLES -DEXPENSIVE_CHECKS -DGTEST_HAS_RTTI=0 -D_DEBUG -D_GLIBCXX_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/clang-build/lib/Analysis -I/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis -I/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/clang-build/include -I/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/include -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wstring-conversion -fdiagnostics-color -O3 -DNDEBUG -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -mmacosx-version-min=10.9 -fno-exceptions -fno-rtti -UNDEBUG -std=c++14 -MD -MT lib/Analysis/CMakeFiles/LLVMAnalysis.dir/LazyCallGraph.cpp.o -MF lib/Analysis/CMakeFiles/LLVMAnalysis.dir/LazyCallGraph.cpp.o.d -o lib/Analysis/CMakeFiles/LLVMAnalysis.dir/LazyCallGraph.cpp.o -c /Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp
/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp:590:23: error: use of undeclared identifier 'make_scope_exit'
auto VerifyOnExit = make_scope_exit([&]() { verify(); });
^
/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp:735:23: error: use of undeclared identifier 'make_scope_exit'
auto VerifyOnExit = make_scope_exit([&]() { verify(); });
^
/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp:755:23: error: use of undeclared identifier 'make_scope_exit'
auto VerifyOnExit = make_scope_exit([&]() { verify(); });
^
/Users/buildslave/jenkins/workspace/clang-stage1-cmake-RA-expensive/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp:1021:23: error: use of undeclared identifier 'make_scope_exit'
auto VerifyOnExit = make_scope_exit([&]() { verify(); });
^
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120659/new/
https://reviews.llvm.org/D120659
More information about the llvm-commits
mailing list