summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/utils/TableGen/ClangAttrEmitter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/utils/TableGen/ClangAttrEmitter.cpp b/clang/utils/TableGen/ClangAttrEmitter.cpp
index bf35caa0cc0..5386ea6c317 100644
--- a/clang/utils/TableGen/ClangAttrEmitter.cpp
+++ b/clang/utils/TableGen/ClangAttrEmitter.cpp
@@ -3878,7 +3878,8 @@ static void WriteDocumentation(RecordKeeper &Records,
OS << " \"";
for (size_t Kind = 0; Kind != NumSpellingKinds; ++Kind) {
SpellingKind K = (SpellingKind)Kind;
- // FIXME: Why are Microsoft spellings not listed?
+ // TODO: List Microsoft (IDL-style attribute) spellings once we fully
+ // support them.
if (K == SpellingKind::Microsoft)
continue;
OpenPOWER on IntegriCloud