File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
clang/unittests/Interpreter Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ using namespace llvm;
33
33
// optimal RC for Opc and Dest of MFMA. In particular, there are high RP cases
34
34
// where it is better to produce the VGPR form (e.g. if there are VGPR users
35
35
// of the MFMA result).
36
- cl::opt<bool > MFMAVGPRForm (
36
+ static cl::opt<bool > MFMAVGPRForm (
37
37
" amdgpu-mfma-vgpr-form" , cl::Hidden,
38
38
cl::desc (" Whether to force use VGPR for Opc and Dest of MFMA. If "
39
39
" unspecified, default to compiler heuristics" ),
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ unittest("ClangdTests") {
108
108
" SourceCodeTests.cpp" ,
109
109
" StdLibTests.cpp" ,
110
110
" SymbolCollectorTests.cpp" ,
111
+ " SymbolDocumentationTests.cpp" ,
111
112
" SymbolInfoTests.cpp" ,
112
113
" SyncAPI.cpp" ,
113
114
" TUSchedulerTests.cpp" ,
Original file line number Diff line number Diff line change @@ -27,3 +27,11 @@ unittest("ClangReplInterpreterTests") {
27
27
ldflags = [ " -rdynamic" ]
28
28
}
29
29
}
30
+
31
+ # FIXME: This is included conditionally in the CMake build if
32
+ # compiler-rt is available. The test currently fails in the GN
33
+ # build. Figure out if we can get it to pass.
34
+ group (" dummy_sources" ) {
35
+ sources = [ " OutOfProcessInterpreterTests.cpp" ]
36
+ not_needed (sources )
37
+ }
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ static_library("lib") {
72
72
" LLDBUtils.cpp" ,
73
73
" OutputRedirector.cpp" ,
74
74
" ProgressEvent.cpp" ,
75
+ " Protocol/DAPTypes.cpp" ,
75
76
" Protocol/ProtocolBase.cpp" ,
76
77
" Protocol/ProtocolEvents.cpp" ,
77
78
" Protocol/ProtocolRequests.cpp" ,
You can’t perform that action at this time.
0 commit comments