aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/warn-missing-variable-declarations.c
AgeCommit message (Collapse)AuthorFilesLines
2014-01-16Forbid driver use in Sema testsAlp Toker1-1/+1
This ports the last Sema tests over to use the frontend directly, and adds a local lit substitution to disable inappropriate %clang usage under this directory. llvm-svn: 199348
2012-10-23Delete junk that snuck into r166498.Eli Friedman1-18/+0
llvm-svn: 166499
2012-10-23Add a new warning -Wmissing-variable-declarations, to warn about variablesEli Friedman1-0/+36
defined without a previous declaration. This is similar to -Wmissing-prototypes, but for variables instead of functions. Patch by Ed Schouten. llvm-svn: 166498