1. 7a22f02 revert r101568, which miscompiles this testcase, distilled from ldecod: by Chris Lattner · 14 years ago
  2. 6784704 fix PR6766: codegen of var initialized with wide char by Nuno Lopes · 14 years ago
  3. 69cf5de add another test for the undef patch just for to have peace of mind :) by Nuno Lopes · 14 years ago
  4. d39a0d6 fix a bogus assertion exposed by a recent change: packing the by Chris Lattner · 14 years ago
  5. cdb30b4 emit padding as undef values, take 2 by Nuno Lopes · 14 years ago
  6. 2677261 IRgen: (Reapply 101222, with fixes) Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 14 years ago
  7. e57aa9e Rewrite handling of 64-bit palignr intrinsics to be vector shuffles. by Eric Christopher · 14 years ago
  8. ab866b4 improve altivec c++ support by adding casts, patch by Anton Yartsev! by Chris Lattner · 14 years ago
  9. 96c250a Speculatively revert "IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself.", I think it might be breaking bootstrap. by Daniel Dunbar · 14 years ago
  10. 89cdaa9 IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 14 years ago
  11. dd17394 implement altivec.h and a bunch of support code, patch by Anton Yartsev! by Chris Lattner · 14 years ago
  12. 8ce9e45 Rework the ConstStructBuilder code to emit missing initializer by Chris Lattner · 14 years ago
  13. 0eea9f9 fix PR6660/6168: emit padding as zeros instead of undef. Because by Chris Lattner · 14 years ago
  14. e6da20f Fix run line so this test actually tests something. by Benjamin Kramer · 14 years ago
  15. c24b9c4 fix PR6805: llvm.objectsize changed to take an i1 instead of an i32. by Chris Lattner · 14 years ago
  16. beb4128 @llvm.sqrt isn't really close enough to C's sqrt to justify emitting calls by John McCall · 14 years ago
  17. 914803f add a testcase that the integrated assembler rejects, this verifies by Chris Lattner · 14 years ago
  18. 018b54e fix PR6780, properly handling the IR {|} escapes in inline asm strings. by Chris Lattner · 14 years ago
  19. 3ecd785 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  20. c7cbed0 Avoid unneeded calls to opt/llvm-dis. by Daniel Dunbar · 14 years ago
  21. fae7bf2 Merge several tests into switch.c. by Daniel Dunbar · 14 years ago
  22. c90f56d Revert r100193 since it causes failures in objc in clang by Mon P Wang · 14 years ago
  23. 8facca6 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  24. 658f679 Slightly relax test case. An upcoming LLVM commit will change the xor instruction. by Jakob Stoklund Olesen · 14 years ago
  25. 7c76027 Fix test in -Asserts build. by Daniel Dunbar · 14 years ago
  26. b5896c3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 14 years ago
  27. 425ef72 Remember the regparm attribute in FunctionType::ExtInfo. Fixes PR3782. by Rafael Espindola · 14 years ago
  28. 366ed48 Fix this test on windows. When running on windows we print by Rafael Espindola · 14 years ago
  29. 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 14 years ago
  30. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  31. d8e10d2 When mapping restrict to noalias, look for 'restrict' on the parameter variable by John McCall · 14 years ago
  32. 0e5f067 Implement new mangling for vectors. by Nick Lewycky · 14 years ago
  33. 7eff7c4 Remove support for nand atomic builtins. They are inconsistently implemented in by Daniel Dunbar · 14 years ago
  34. cb61a7b IRgen: Wrap atomic intrinsics with memory barriers, to ensure we honor the semantics. by Daniel Dunbar · 14 years ago
  35. e0cdb4e Evaluate: Fix a subtle bug in the pointer evaluator in which we would do an by Daniel Dunbar · 14 years ago
  36. a14db75 fix PR6433, crash on va_arg of typedef. by Chris Lattner · 14 years ago
  37. d58562e Fix file reference for derived and composite types. Now, dwarf writer uses strict verifier that ignores debug info for such types if their file info is unknown. by Devang Patel · 14 years ago
  38. b35baae add a codegen hack to work around an AST bug, allowing us to compile the by Chris Lattner · 14 years ago
  39. ba68b08 PR6515: Implement __builtin_signbit and friends. by Eli Friedman · 14 years ago
  40. fdf30ae Remove header file dependencies in block patch test case. by Fariborz Jahanian · 14 years ago
  41. a36e223 add support for a 1<<29 bit in the block flags field to mark blocks using alternate struct return ABI by Blaine Garst · 14 years ago
  42. da18261 really fix 6473 by handling weakref in constant expressions. by Rafael Espindola · 14 years ago
  43. 6a83670 Fix PR6473. by Rafael Espindola · 14 years ago
  44. 468ec6c Revert changes r97693, r97700, and r97718. by John McCall · 14 years ago
  45. 3ff6302 XFAIL these tests on win32, since the win32 buildbot apparently disables all by John McCall · 14 years ago
  46. 2ac7472 Fix __builtin_ia32_roundss and __builtin_ia32_roundsd definitions. by Eric Christopher · 14 years ago
  47. 06a3066 Implement __builtin_dwarf_sp_column(). by John McCall · 14 years ago
  48. 29a4071 fix a buildbot failure, this was passing for me because the by Chris Lattner · 14 years ago
  49. eeeb49a merge asm-2.c into asm.c, remove asm-inout.c because it is by Chris Lattner · 14 years ago
  50. b992259 fix PR6475, we were doing side-effecting stuff in an assert. by Chris Lattner · 14 years ago
  51. 2752c01 add framework for ARM builtins, Patch by Edmund Grimley Evans! by Chris Lattner · 14 years ago
  52. db7b72a Support constant-evaluation of __builtin_nans* as well as the correct constant by John McCall · 14 years ago
  53. 1a4bb5c Make this test portable to ABIs that use sret. by John McCall · 14 years ago
  54. b7d3589 Fix test case and convert fully to FileCheck. by John McCall · 14 years ago
  55. 0b0ef0a Canonicalize parameter and return types before computing ABI info. Eliminates by John McCall · 14 years ago
  56. 70c23cd Emit debug info for VectorType. by Devang Patel · 14 years ago
  57. 573e59d fix buildbot failure on windows by slightly trimming test output to ignore temporary name by Blaine Garst · 14 years ago
  58. 11e8ce7 Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 14 years ago
  59. 2a7eb28 Unconditionally support block introspection data in a new field at the end by Blaine Garst · 14 years ago
  60. 18da88a PR6386: Fix a recent regression in IRGen of cast-to-union constructs. by Eli Friedman · 14 years ago
  61. f3f8d2a Allow redefinitions of extern inline functions in GNU89 mode, just as GCC by Charles Davis · 15 years ago
  62. d19429f Distinguish two lexical blocks at the same level. by Devang Patel · 15 years ago
  63. f0122fe dllimport and dllexport are declspec attributes, too. They're also by Charles Davis · 15 years ago
  64. a92d613 Use getLocStart(), instead of getLocEnd(), to record starting location of objc method. :) by Devang Patel · 15 years ago
  65. 74f7293 Emit the 'alignstack' LLVM function attribute when we encounter a function by Charles Davis · 15 years ago
  66. d263e7b Use current location as the location of compiler generated arguments, e.g. self, _cmd etc. by Devang Patel · 15 years ago
  67. 195337d IRgen: Add CreateMemTemp, for creating an temporary memory object for a particular type, and flood fill. - CreateMemTemp sets the alignment on the alloca correctly, which fixes a great many places in IRgen where we were doing the wrong thing. by Daniel Dunbar · 15 years ago
  68. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  69. d82bf2d Convert this test to FileCheck instead of grepping LLVM IR. by Charles Davis · 15 years ago
  70. 16c4f3c Now that we store calling conventions in the types, use them instead of by Charles Davis · 15 years ago
  71. aa74a1e Implement promotion for enumeration types. by Douglas Gregor · 15 years ago
  72. 4581581 ARM/APCS: Fix classification of small complex integer types as "integer like". by Daniel Dunbar · 15 years ago
  73. 4cc753f ARM/APCS: Pass Complex types following llvm-gcc. by Daniel Dunbar · 15 years ago
  74. b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 15 years ago
  75. 188aed3 New test case. by Devang Patel · 15 years ago
  76. 679855a ARM/APCS ABI: Fix some problems with bit-fields in structures. After rereading by Daniel Dunbar · 15 years ago
  77. 21fd7d7 Fix an incorrect union layout assert. Fixes PR6164. by Anders Carlsson · 15 years ago
  78. f95dd73 Adjust testcase for recent DWARF printer changes. by Benjamin Kramer · 15 years ago
  79. d2635a4 Fix for Release-Asserts. by Mike Stump · 15 years ago
  80. c31176d Use -fno-math-errno by default, and remove the IsMathErrnoDefault by Dan Gohman · 15 years ago
  81. 3f27b38 __builtin_object_size(ptr, type) returns -1 for type = {0,1} if there are any side-effects. by Benjamin Kramer · 15 years ago
  82. 8b7124a Add test for annotate attribute for coverage. by Eli Friedman · 15 years ago
  83. 5b088a1 Fix minor oversight for increment/decrement of complex int. Add tests for by Eli Friedman · 15 years ago
  84. 9b71b97 Add a couple more tests for coverage. by Eli Friedman · 15 years ago
  85. efa42f7 Don't look through casts when looking for the underlying decl for a function by Eli Friedman · 15 years ago
  86. 7c8f9b7 fix typo by Chris Lattner · 15 years ago
  87. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  88. fee667f Update for the intrinsic changes in llvm: the object size intrinsic by Eric Christopher · 15 years ago
  89. 38b48af clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option. by Daniel Dunbar · 15 years ago
  90. 80737ad Update tests to use %clang instead of 'clang', and forcibly disable use of ' by Daniel Dunbar · 15 years ago
  91. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  92. 01ed063 Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  93. c3420ff Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing. by Nate Begeman · 15 years ago
  94. ce5818a Support x86's PALIGNR instruction without the use of a palignr intrinsic. by Nate Begeman · 15 years ago
  95. 386ca78 Fix for PR5709: use the computed type of the declaration instead of the by Eli Friedman · 15 years ago
  96. 6ef83cc Remove include of system header. by Daniel Dunbar · 15 years ago
  97. 972adb8 Use clang-cc in this test. by Daniel Dunbar · 15 years ago
  98. bc773a0 Switch over to checking .ll files instead of .s files. by Mike Stump · 15 years ago
  99. c08582b add 'F' to a bunch of libm builtins so that codegen doesn't die on them, by Chris Lattner · 15 years ago
  100. 7c176fa fix comment. by Chris Lattner · 15 years ago