1. f079b73 Retry r126357. Use CharUnits for the Size and DataSize calculations when by Ken Dyck · 14 years ago
  2. 035287d remove a bogus assertion, add a comment. by Chris Lattner · 14 years ago
  3. 3858938 make switch condition constant folding much more aggressive, handling by Chris Lattner · 14 years ago
  4. fda0f1f First tiny step to implementing PR9322: build infrastructure for only emitting the by Chris Lattner · 14 years ago
  5. bc7fbf0 Pretty up the emission of field l-values and use volatile and TBAA when by John McCall · 14 years ago
  6. bab380c Use private linkage to avoid symbol conflicts in corner cases like the one by Rafael Espindola · 14 years ago
  7. 95bba6f Move some Objective-C tests to SemaObjC and CodeGenObjC. by Anders Carlsson · 14 years ago
  8. 935f0f0 add one more case of mismatched input/output constraints. by Chris Lattner · 14 years ago
  9. 9becaae Test case for r126127 and r126141. Radar 9012638. by Stuart Hastings · 14 years ago
  10. e0fd832 implement a tiny amount of codegen support for gnu array range by Chris Lattner · 14 years ago
  11. 15e310a Warn about code that uses variables and functions with internal linkage by John McCall · 14 years ago
  12. bb6f548 If preprocessed token introduced empty filename then use main translation unit's filename for debug info entries. by Devang Patel · 14 years ago
  13. 4e274e9 Add a hack to avoid adding '\01' to asm names when possible. It would be by Rafael Espindola · 14 years ago
  14. db27d82 OpenCL: standardise naming of test cases by Peter Collingbourne · 14 years ago
  15. 36e05ec Add a testcase for the mcount profiling. by Roman Divacky · 14 years ago
  16. 17d3fea Driver/Frontend: Wire up -mregparm=. by Daniel Dunbar · 14 years ago
  17. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  18. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 14 years ago
  19. 5b5828b Fix test by fully specifying the platform. by Nick Lewycky · 14 years ago
  20. 6f75550 Basic support for -mms-bitfields, from Carl Norum! by Douglas Gregor · 14 years ago
  21. 65e7a9e When initializing struct members, the important thing is that the "initializing" expression is by Argyrios Kyrtzidis · 14 years ago
  22. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 14 years ago
  23. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 14 years ago
  24. ba4f5d5 Fix the computation of alignment for fields of packed+aligned structs. by John McCall · 14 years ago
  25. 6eb5be8 Comment a wacky test case by Douglas Gregor · 14 years ago
  26. d3d4e1e More unnamed_addr. by Rafael Espindola · 14 years ago
  27. b266a1f Add unnamed_addr to the special strings created by by Rafael Espindola · 14 years ago
  28. 8d3d6c9 Ensure an insertion point at the end of a statement-expression. Fixes PR8967. by John McCall · 14 years ago
  29. cd5b22e Fix a latent bug where, after emitting an expression statement, we would by John McCall · 14 years ago
  30. 1257bc6 Add unnamed_addr when creating artificial string globals. For example, in by Rafael Espindola · 14 years ago
  31. 5d918a4 Use -check-prefix to make it clear the test is SVR4/DARWINPPC specific. by Roman Divacky · 14 years ago
  32. 403bdd7 Drop the _darwin/_svr4 suffixes. by Roman Divacky · 14 years ago
  33. c81f2a2 PowerPC fixes. by Roman Divacky · 14 years ago
  34. 33a5344 Add support for passing variables declared to use a xmm register to asm by Rafael Espindola · 14 years ago
  35. 0ec89f9 Add support for declaring register contraints in variables. They are only used by Rafael Espindola · 14 years ago
  36. 3f59c97 The -fshort-wchar option causes wchar_t to become unsigned, in addition to being by Chris Lattner · 14 years ago
  37. 54eeba7 Generalize this test to work without instruction names. by Dan Gohman · 14 years ago
  38. 2ea7e73 Implement CodeGen support for the may_alias attribute. by Dan Gohman · 14 years ago
  39. 823d8e9 Start using DIBuilder. It provides cleaner interface. by Devang Patel · 14 years ago
  40. f5fe292 Fix PR8720 by printing an error message with a substring that the gcc testsuite searches for. by Rafael Espindola · 14 years ago
  41. fd56900 Silly special case: never load when dereferencing void*. by John McCall · 14 years ago
  42. 85515d6 First pass at implementing the intent of ANSI C DR106. by John McCall · 14 years ago
  43. 3144b72 Fix this test case on no-asserts builds by not trying to match the basic by John McCall · 14 years ago
  44. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  45. 0982136 Implement -cl-single-precision-constant by Peter Collingbourne · 14 years ago
  46. 61e0786 Implement -cl-opt-disable by Peter Collingbourne · 14 years ago
  47. 830937b IR Gen. part of API support for __block cxx by Fariborz Jahanian · 14 years ago
  48. 1b72677 Improve codegen for initializer lists to use memset more aggressively by Chris Lattner · 14 years ago
  49. a6cf1e7 Add support for the common and nocommon attributes. by Eric Christopher · 14 years ago
  50. 7b3982b FileCheckize. by Eric Christopher · 14 years ago
  51. 7c92342 FileCheckize. by Eric Christopher · 14 years ago
  52. 70b0294 Enhance the init generation logic to emit a memset followed by a few stores when by Chris Lattner · 14 years ago
  53. faa5bfc Declaring local static in global block by Fariborz Jahanian · 14 years ago
  54. f0438e7 Replace \r\n with \n. No functional change. by Nick Lewycky · 14 years ago
  55. cb690b1 Fix a (probably very old) regression where we weren't using the typedef name for anonymous tag types. by Anders Carlsson · 14 years ago
  56. 6c6feac This test does not need to test the alignment of pointers. Make it pass by John McCall · 14 years ago
  57. 02a8078 long => int to make the test pass on system where sizeof(long) = 64. by Francois Pichet · 14 years ago
  58. 8e161ed Microsoft C anonymous struct implementation. by Francois Pichet · 14 years ago
  59. aa4fe05 comparison of AltiVec vectors now gives bool result (fix for 7533) by Anton Yartsev · 14 years ago
  60. 8e8c7e0 Re-enable test with modifications for Neon vector changes in clang. by Bob Wilson · 14 years ago
  61. f08f2dd Temporarily disable this check for Neon vector type mangling. by Bob Wilson · 14 years ago
  62. ba772ba This really seems like a boring set of fixes to our tests to make them more by Chandler Carruth · 14 years ago
  63. b418d74 Simplify some complex emission and implement correct semantics for by John McCall · 14 years ago
  64. 5c8e13f Restore these tests. I think I fixed the problem. We shall see. by Fariborz Jahanian · 14 years ago
  65. ff624c1 Always emit full loads from volatile complex l-values. by John McCall · 14 years ago
  66. 3d56065 Removing these test till redo them so they won't depend on the built compiler. by Fariborz Jahanian · 14 years ago
  67. 4672879 Fix the test for Release. by Argyrios Kyrtzidis · 14 years ago
  68. 981b6fd Fix miscompilation regarding VLAs; subscription of VLA pointers was incorrect. by Argyrios Kyrtzidis · 14 years ago
  69. 4468078 ARM EH uses a different personality function in C. by John McCall · 14 years ago
  70. 926ee13 Tests for inline asm constraints, generic and x86. by John Thompson · 14 years ago
  71. 35cebc3 Unbreak private_extern, which apparently we had zero tests for. by John McCall · 14 years ago
  72. 46ec70e When emitting l-values for bool non-__block decl references, make a pointer by John McCall · 14 years ago
  73. e7bc972 When computing visibility, use the latest declaration's explicit visibility by John McCall · 14 years ago
  74. 26815d9 Restore r117403 (fixing IR gen for bool atomics), this time being less by John McCall · 14 years ago
  75. 1189332 Revert r117403 as it caused PR8480. by Rafael Espindola · 14 years ago
  76. 789a159 Extract procedures to do scalar-to-memory and memory-to-scalar conversions by John McCall · 14 years ago
  77. ac65c62 A couple of tweaks to the visibility rules: by John McCall · 14 years ago
  78. 4846675 Implement GNU C extension: two types are compatible if they appear by Peter Collingbourne · 14 years ago
  79. 80d56a9 Linux still needs these hacks. by Bill Wendling · 14 years ago
  80. da7700e Now that mm_malloc.h was rewritten to *not* include errno.h (see by Bill Wendling · 14 years ago
  81. 5d058e7 test: FileCheck'ize and document test. by Michael J. Spencer · 14 years ago
  82. bb465d7 Reapply r116684 with fixes. The test cases needed to be updated. by Bill Wendling · 14 years ago
  83. 44270d6 support for AltiVec extensions from the Cell architecture by Anton Yartsev · 14 years ago
  84. 9046c22 Allow a string literal to initialize a tail array (PR8217), patch by Chris Lattner · 14 years ago
  85. 1944ec1 Implement __builtin_ia32_vec_ext_v2si function (required by Qt). by Argyrios Kyrtzidis · 14 years ago
  86. 59705ae Add support for UCNs for character literals by Nico Weber · 14 years ago
  87. 022d13d This patch fixes multiple issues in clang's designated init builder and by Douglas Gregor · 14 years ago
  88. 04ea366 tests: Force a triple to avoid wchar_t differences. by Daniel Dunbar · 14 years ago
  89. a0f15b0 Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode. by Nico Weber · 14 years ago
  90. ecb1b4c Erm...this isn't the same as PR6658. by Bill Wendling · 14 years ago
  91. eb7fe36 MMX conversion work is done. We can remove the FIXMEs. by Bill Wendling · 14 years ago
  92. 2ef48a4 Add same hack to mmx-builtins.c as in Headers/c89.c to get it to pass on Win32. PR6658. by Bill Wendling · 14 years ago
  93. da500ca Do x86_64. by Bill Wendling · 14 years ago
  94. 9ab0a15 Test to verify that all of the MMX builtins are handled by the front-end. by Bill Wendling · 14 years ago
  95. d47e262 Clang part of MMX rewrite (goes with 115243). by Dale Johannesen · 14 years ago
  96. dd0cb22 Add support for attribute((naked)), patch by Zoxc on cfe-commits! by Daniel Dunbar · 14 years ago
  97. c5be7b0 vla expressions used in __typeof__ must be evaluated. Fixes rdar://8476159. by Fariborz Jahanian · 14 years ago
  98. 745da3a Patch implements passing arrays to functions expecting vla. Implements pr7827. by Fariborz Jahanian · 14 years ago
  99. 47423bd Don't crash on _Imaginary. by Argyrios Kyrtzidis · 14 years ago
  100. 7bb1d23 Tweak test to pass -ffreestanding, to avoid platform dependent header issues. by Daniel Dunbar · 14 years ago