[PATCH] D69822: [clang] Add new -fdebug-default-version flag.
David Blaikie via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 6 12:57:15 PST 2019
dblaikie added inline comments.
================
Comment at: clang/test/Driver/debug-default-version.c:37
+
+// NODEBUGINFO-NOT: "-debug-info-kind="
+
----------------
Same issue as with the dwarf-version below.
It's probably easier to remove the "" (FileCheck arguments aren't quoted - these quotes are treated like any other character/as part of the match - so omitting them means FileCheck can match -debug-info-kind= no matter what comes before/after it, rather than specifically looking for a " immediately after the '='). (you could remove all the " if you like, I don't think they add a lot to the tests here)
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69822/new/
https://reviews.llvm.org/D69822
More information about the cfe-commits
mailing list