aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-01-05 00:37:42 +0000
committerTed Kremenek <kremenek@apple.com>2010-01-05 00:37:42 +0000
commit724d7fc12c34944e43388ab2b35a076132e3e76e (patch)
treecf94f663e612c66ccc303b61a618444ac5f877f9 /lib/Sema/SemaChecking.cpp
parentc9a82a7085584dc20d43401322da2f41132c3229 (diff)
Remove stale comment. We already do format string checking for functions with the format attribute.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92553 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r--lib/Sema/SemaChecking.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp
index 7d2e38cc15..fc8e18bc09 100644
--- a/lib/Sema/SemaChecking.cpp
+++ b/lib/Sema/SemaChecking.cpp
@@ -966,9 +966,6 @@ Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
///
/// (8) Check that the format string is a wide literal.
///
-/// (9) Also check the arguments of functions with the __format__ attribute.
-/// (TODO).
-///
/// All of these checks can be done by parsing the format string.
///
/// For now, we ONLY do (1), (3), (5), (6), (7), and (8).