We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4f5de commit 8b0b5adCopy full SHA for 8b0b5ad
lib/Frontend/ParseableInterfaceSupport.cpp
@@ -124,6 +124,10 @@ ParseableInterfaceModuleLoader::configureSubInvocationAndOutputPaths(
124
SubInvocation.setTargetTriple(LangOpts.Target);
125
SubInvocation.setClangModuleCachePath(CacheDir);
126
127
+ // Inhibit warnings from the SubInvocation since we are assuming the user
128
+ // is not in a position to fix them.
129
+ SubInvocation.getDiagnosticOptions().SuppressWarnings = true;
130
+
131
// Calculate an output filename that includes a hash of relevant key data, and
132
// wire up the SubInvocation's InputsAndOutputs to contain both input and
133
// output filenames.
0 commit comments