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 8f8873e commit 5b0a0d8Copy full SHA for 5b0a0d8
src/tools/compiletest/src/header/cfg.rs
@@ -187,6 +187,12 @@ pub(super) fn parse_cfg_name_directive<'a>(
187
if name == "llvm-version" {
188
outcome = MatchOutcome::External;
189
}
190
+
191
+ // Don't error out for ignore-llvm-version, that has a custom syntax and is handled
192
+ // elsewhere.
193
+ if name == "gdb-version" {
194
+ outcome = MatchOutcome::External;
195
+ }
196
197
198
ParsedNameDirective {
0 commit comments