llvm-project/clang/test
Richard Trieu aee9e76722 The current warning in -Wnull-arithmetic for comparisons between NULL and non-pointers is not very helpful. This patch will update the wording to be more helpful to users.
Old warning:

warning: use of NULL in arithmetic operation [-Wnull-arithmetic]
  return 10 <= NULL;
            ^  ~~~~

New warning:

warning: comparison between NULL and non-pointer ('int' and NULL) [-Wnull-arithmetic]
  return 10 <= NULL;
         ~~ ^  ~~~~
llvm-svn: 137377
2011-08-11 22:38:21 +00:00
..
ARCMT [arcmt] When checking whether properties needs to be strong or not, take into account 2011-08-10 21:46:48 +00:00
ASTMerge Flip the default for showing include stacks on notes to false. This 2011-03-27 20:00:08 +00:00
Analysis [analyzer] add more buffer overflow tests to show we handle sizeof(VLA) in obstruse ways... 2011-08-06 00:34:48 +00:00
CXX When performing the lookup in the current scope for a member access to 2011-08-10 21:59:45 +00:00
CodeCompletion Fix an assertion when code-completing, rdar://9288730 & http://llvm.org/PR9728. 2011-04-23 01:04:12 +00:00
CodeGen Add tests for string literal concatenation. 2011-08-11 05:57:09 +00:00
CodeGenCXX Simplify EH control flow by observing that EH scopes form a simple 2011-08-11 02:22:43 +00:00
CodeGenObjC The continue label in an ARC for-in loop should not involve 2011-08-05 00:14:38 +00:00
CodeGenObjCXX Fix a couple of problems with initialization and assignment to 2011-07-28 07:23:35 +00:00
CodeGenOpenCL This handles the missing cases of opencl vector literals. 2011-07-15 23:07:01 +00:00
Coverage Remove the AST printer (-ast-print-xml), which is too incomplete and 2011-03-07 01:03:30 +00:00
Driver Introduce the "-index-header-map" option, to give special semantics 2011-07-28 04:45:53 +00:00
FixIt Improve overloaded function handling in the typo correction code. 2011-08-03 20:36:05 +00:00
Frontend Revert r134898, "test/Frontend/dependency-gen.c: Mark XFAIL: mingw due to PR10331. to appease mingw-target (and non-mingw-host) builds. 2011-07-11 22:34:14 +00:00
Headers Use -ffreestanding with clang_cc1 to make the test picks the clang builtin include. 2011-07-22 10:49:54 +00:00
Index [libclang] When pointing at an objc property don't return a cursor that points at the 2011-08-10 21:12:04 +00:00
Lexer Add tests for string literal concatenation. 2011-08-11 05:57:09 +00:00
Misc Add diagtool-based test where we enforce that no additional warnings can be added to Clang without a -W flag. 2011-08-11 22:06:55 +00:00
PCH Change the hashing function for DeclContext lookup within an AST file 2011-08-02 18:32:54 +00:00
Parser Parsing of C++0x lambda expressions, from John Freeman with help from 2011-08-04 15:30:47 +00:00
Preprocessor A couple fixes for preprocessor expressions: 2011-08-03 00:04:13 +00:00
Rewriter objc rewriter: Fixes a rewriting of implicit casting of an integral 2011-08-04 23:58:03 +00:00
Sema Add a test case for the divide-by-zero fix in r137234 2011-08-10 19:47:25 +00:00
SemaCUDA Sema: diagnose kernel calls to non-global functions 2011-02-23 01:53:29 +00:00
SemaCXX The current warning in -Wnull-arithmetic for comparisons between NULL and non-pointers is not very helpful. This patch will update the wording to be more helpful to users. 2011-08-11 22:38:21 +00:00
SemaObjC objective-c: Using existing infrastructure for finding 2011-08-10 17:16:30 +00:00
SemaObjCXX Objective-C++ ARC: When performing template argument deduction for a 2011-07-26 14:53:44 +00:00
SemaOpenCL This handles the missing cases of opencl vector literals. 2011-07-15 23:07:01 +00:00
SemaTemplate Make sure to canonicalize the argument type of a non-type template 2011-08-09 01:55:14 +00:00
Unit test/Unit: Fixup lit.cfg to allow running inside test/Unit (with llvm-config in 2011-06-22 21:46:43 +00:00
CMakeLists.txt Add diagtool-based test where we enforce that no additional warnings can be added to Clang without a -W flag. 2011-08-11 22:06:55 +00:00
Makefile lit support for REQUIRES: asserts. 2011-06-22 23:23:49 +00:00
TestRunner.sh
cxx-sections.data
lit.cfg Added registered targets for in-test dependency declarations. 2011-06-03 18:36:30 +00:00
lit.site.cfg.in lit support for REQUIRES: asserts. 2011-06-22 23:23:49 +00:00
make_test_dirs.pl