commit | f762905bdefad77f91c7c6782a9c17e6b274d393 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Mon Jul 26 19:45:54 2010 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Mon Jul 26 19:45:54 2010 +0000 |
tree | 6067506e43e636361daa51dbd42fc3a7fceae0b1 | |
parent | 666a197deb75d95c78ddd39274af1a54240828d8 [diff] [blame] |
Hoist argument type checking into CheckFormatHandler. This is prep for scanf format string argument type checking. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109428 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/ScanfFormatString.cpp b/lib/Analysis/ScanfFormatString.cpp index 61af1d6..d65352a 100644 --- a/lib/Analysis/ScanfFormatString.cpp +++ b/lib/Analysis/ScanfFormatString.cpp
@@ -217,4 +217,10 @@ return false; } +ArgTypeResult ScanfSpecifier::getArgType(ASTContext &Ctx) const { + // FIXME: Fill in. + return ArgTypeResult(); +} + +