diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-06-02 08:36:19 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-06-02 08:36:19 +0000 |
commit | b92abb460be254fe577ccb95355ff7debf6a7719 (patch) | |
tree | 95b6a9fdbc345408ac5c5edc012b3c36a9673690 /lib/Sema/SemaChecking.cpp | |
parent | 4da925578a43636cf8ad87f8fa82a8fe9b566c92 (diff) |
PR4142: Add %m format string specifier.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r-- | lib/Sema/SemaChecking.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index c4183a0e61..4856e7fd21 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -1062,6 +1062,11 @@ void Sema::CheckPrintfString(const StringLiteral *FExpr, CurrentState = state_OrdChr; break; + case 'm': + // FIXME: Warn in situations where this isn't supported! + CurrentState = state_OrdChr; + break; + // CHECK: Are we using "%n"? Issue a warning. case 'n': { ++numConversions; |