1. 01ed063 Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  2. 23b7217 Testcase for recent checkin. by Mike Stump · 15 years ago
  3. c9875bf Don't complain about falling off the end of a function with an asm by Mike Stump · 15 years ago
  4. 842aef8 First pass at implementing C++ enum semantics: calculate (and store) an by John McCall · 15 years ago
  5. 721e77d Move RequireCompleteType requirement for fields early into ActOnField so that by Eli Friedman · 15 years ago
  6. 02dd4b1 fix rdar://7446395, a crash on invalid, by fixing a broken assertion. by Chris Lattner · 15 years ago
  7. 6e132aa Fix for PR5650 - Revised vector_size attribute handling to be done earlier before declaration is finalized. by John Thompson · 15 years ago
  8. 67f85fc Fix for PR5447: teach Evaluate to deal with floating-point conditionals. by Eli Friedman · 15 years ago
  9. 9aef726 Fix for PR5679: make __builtin_prefetch a bit more flexible in what it accepts by Eli Friedman · 15 years ago
  10. 433dd49 Remove unnecessary -fblocks=0. by Daniel Dunbar · 15 years ago
  11. be724ba When the condition of a switch() statement is semantically invalid, by Douglas Gregor · 15 years ago
  12. a79f8b3 Fix a recent regression probably caused by addition of altivec-style by Fariborz Jahanian · 15 years ago
  13. 11ac3f5 Fix for PR5233. by Edward O'Callaghan · 15 years ago
  14. e37f4b8 Driver: Use '-target-abi' 'FOO' instead of '-target-abi=FOO'. by Daniel Dunbar · 15 years ago
  15. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  16. 53e8484 Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... variants instead of using llvm::cl::init(true) arguments. by Daniel Dunbar · 15 years ago
  17. 947e00d Make test header independent so it doesn't fail on freebsd. I hope this doesn't by Benjamin Kramer · 15 years ago
  18. 8ee15dc Use clang to run tests which include headers from the system. by Daniel Dunbar · 15 years ago
  19. 23afaad Don't #include <stdio.h> when tests don't need it, or use clang instead of clang-cc when they do. by Daniel Dunbar · 15 years ago
  20. 7f92f03 Add constant evaluation for comma operator with floating-point operand. Fixes by Eli Friedman · 15 years ago
  21. 8406aed Fix PR 5422: handle lvalue results when evaluating 'based' ptrtoints as part of by John McCall · 15 years ago
  22. 3451e92 Changed error for nested type qualifier mismatch to by Fariborz Jahanian · 15 years ago
  23. 8875334 Test case for Sean Hunt's patch which I left out. by Fariborz Jahanian · 15 years ago
  24. 8f4c59e Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen by Eli Friedman · 15 years ago
  25. a23dcce Add a triple to try to fix the buildbot error. by Anders Carlsson · 15 years ago
  26. 1c03ca3 __uint128_t is indeed an unsigned integer type. Fixes PR5435. by Anders Carlsson · 15 years ago
  27. 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
  28. dc767a1 Support -Wshorten-64-to-32 for integer types only, which seems to satisfy the by John McCall · 15 years ago
  29. e8babd1 Improve -Wconversion by permitting binary operations on values of the target by John McCall · 15 years ago
  30. d5c376e Test case for -Wconversion. by John McCall · 15 years ago
  31. 48f5e63 compare.c also needs a target triple now, and improve some comments while we're by John McCall · 15 years ago
  32. 5dbad3d Improve the -Wsign-compare heuristics: by John McCall · 15 years ago
  33. 35de813 Turn off -Wsign-compare warnings by default by Douglas Gregor · 15 years ago
  34. 632d772 Make ASTContext::getIntWidth return 1 for all boolean type variations, not just for the unqualified, unaliased bool. by Sebastian Redl · 15 years ago
  35. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  36. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  37. 45aa455 Implement -Wsign-compare, or at least the actual comparison part of it. by John McCall · 15 years ago
  38. 9112b93 Diagnose the use of 'fastcall' on functions without prototypes or with by John McCall · 15 years ago
  39. d00f200 Diagnose __builtin_offsetof on incomplete types. Fixes rdar://problem/7222956 by John McCall · 15 years ago
  40. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  41. d8ac057 Reorganize the parsing of decl groups / function definitions so that by John McCall · 15 years ago
  42. df7c3b9 Fix the type of __builtin_expect, from Ed Schouten! by Douglas Gregor · 15 years ago
  43. 9e6b37a warn about returning the address of a label. by Chris Lattner · 15 years ago
  44. addb0f6 Fix some Window-isms to get these tests to pass on Windows. by John Thompson · 15 years ago
  45. aee3c93 Implement Chris's suggestions for the precendence warnings. Reformat the code a bit. Test the fixits. by Sebastian Redl · 15 years ago
  46. 9e1d29b Implement a warning for mixing bitwise logical with comparison ops. Fixes PR5297. by Sebastian Redl · 15 years ago
  47. 9e4e2d1 Phrase compile time assert in standard way. by Daniel Dunbar · 15 years ago
  48. 7a128e8 Fix PR5298 - -Wmissing-noreturn shouldn't warn if the function is already by Chris Lattner · 15 years ago
  49. 5233826 Implement rdar://6756623 - use of deprecated type in deprecated typedef should not warn by Chris Lattner · 15 years ago
  50. d451f83 When parsing a top level struct declaration, make sure to by Chris Lattner · 15 years ago
  51. e78ec31 fix #2 :) by Chris Lattner · 15 years ago
  52. 4a058de fix testcase, thanks Daniel. by Chris Lattner · 15 years ago
  53. 9fcfe92 fix PR5265: the size of a float3 should be rounded up to its alignment. by Chris Lattner · 15 years ago
  54. 9dc9c37 Downgrade "function declared 'noreturn' should not return" from an by Douglas Gregor · 15 years ago
  55. 0a026af Implement PR5242: don't desugar a type more than once in a diagnostic. This by Chris Lattner · 15 years ago
  56. 6a2b926 teach getCorrespondingUnsignedType how to handle vectors of integers, by Chris Lattner · 15 years ago
  57. 5f04881 Implement PR4407 - missing warnings on case value overflow, by Chris Lattner · 15 years ago
  58. 7909fee add rdar # I accidentally lost. by Chris Lattner · 15 years ago
  59. 9079cd3 merge two tests. by Chris Lattner · 15 years ago
  60. bc8d42c make the diagnostic in the 'unused result' warning more precise by Chris Lattner · 15 years ago
  61. 8c8d919 Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For by Anders Carlsson · 15 years ago
  62. b5352cf Implement support for -Wunused-variable, from Oscar Bonilla! by Douglas Gregor · 15 years ago
  63. 27a84d0 Add an error for function parameters that have a qualified address space since this is not allowed by the embedded c extension spec. by Tanya Lattner · 15 years ago
  64. 9a8c9a2 Provide a custom diagnostic when code tries to use an unknown builtin by Douglas Gregor · 15 years ago
  65. 50dd255 builtin_trap should be noreturn, this fixes PR5062, patch by Roman Divacky! by Chris Lattner · 15 years ago
  66. e7c9645 Add a "positive" matching test case for attribute 'noreturn' that involves a nested infinite loop. by Ted Kremenek · 15 years ago
  67. f679a98 Add two more test cases for attribute 'noreturn'. by Ted Kremenek · 15 years ago
  68. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  69. 21fb98e implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. by Chris Lattner · 15 years ago
  70. ed5d651 In C++, a variadic function does not need an ellipsis prior to the comma. Parse it in both C and C++, but diagnose it as an error in C with a fix-it hint to add the comma. by Douglas Gregor · 15 years ago
  71. 21190d5 Implement __builtin_unreachable(), a GCC 4.5 extension. by Chris Lattner · 15 years ago
  72. 1131014 Attempt to make a test portable. by Daniel Dunbar · 15 years ago
  73. 4bf4e30 Make our char vector types not be explicitly signed to match GCC and to fix compilation with C++ and -fno-lax-vector-conversions by Anders Carlsson · 15 years ago
  74. 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 15 years ago
  75. 29813c3 Some people don't want to fix their broken code just yet, so turn off by Mike Stump · 15 years ago
  76. 31fddcc Update tests by Anders Carlsson · 15 years ago
  77. 0f9a5b5 -Wchar-subscripts should not warn for explicit signed char subscripts either. Another fix for PR4978. by Sam Weinig · 15 years ago
  78. b0a2290 -Wchar-subscripts should not warn for unsigned char subscripts. Fixes PR4978. by Sam Weinig · 15 years ago
  79. 76e2b71 Add support for -Wchar-subscripts. Fixes PR4801. by Sam Weinig · 15 years ago
  80. a2a4161 ARM target tweaks. by Daniel Dunbar · 15 years ago
  81. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  82. 4ca606e reject returning a block expr even when it has parens and casts in the way. by Chris Lattner · 15 years ago
  83. 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 15 years ago
  84. cc6be89 Remove unnecessary include. by Eli Friedman · 15 years ago
  85. 0e88b16 Cleanups. by Mike Stump · 15 years ago
  86. 91a2886 Fix bug in __extension__ handling for declarations, from Abramo by Douglas Gregor · 15 years ago
  87. 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 15 years ago
  88. 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 15 years ago
  89. 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 15 years ago
  90. 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 15 years ago
  91. a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
  92. 199ea95 Don't perform integer promotions on the operand to a cast; this by Eli Friedman · 15 years ago
  93. bf030d7 Make test more precise. by Eli Friedman · 15 years ago
  94. 07a5c22 Disable all recognition of main() in -ffreestanding. Addresses bug #4720. by John McCall · 15 years ago
  95. 2cff7d1 Change handling of attribute 'malloc' to only accept the attribute on function by Ted Kremenek · 15 years ago
  96. 2733b66 Add more attribute 'malloc' test cases involving function pointers. by Ted Kremenek · 15 years ago
  97. b109069 Per Eli Friedman's feedback, handle attribute 'malloc' being applied to by Ted Kremenek · 15 years ago
  98. 73e10b0 Rename macro to avoid a name clash on FreeBSD. by Benjamin Kramer · 15 years ago
  99. 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
  100. 797c3c4 fix a couple of problems with section attributes: by Chris Lattner · 15 years ago