1. 663388f Fix invalid bit-field. by Anders Carlsson · 16 years ago
  2. 9e09f5d Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. by Anders Carlsson · 16 years ago
  3. 98883e1 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 16 years ago
  4. 8de8d1d Fix for PR3150: obvious copy-paste bug in ScalarExprEmitter::VisitBinLOr. by Eli Friedman · 16 years ago
  5. 4d6e8dd Convert incomplete array types before emitting debug info for them, fixes PR3134. by Anders Carlsson · 16 years ago
  6. ad3d691 Handle returning complex types that get coerced. Fixes PR3131 by Anders Carlsson · 16 years ago
  7. e8a32b8 Reimplement Expr::isConstantExpr in terms of Expr::Evaluate. This fixes PR2832. by Anders Carlsson · 16 years ago
  8. f2e8d98 Forgot the newline :) by Anders Carlsson · 16 years ago
  9. 338f858 Add test case for bug that's been fixed. by Anders Carlsson · 16 years ago
  10. cd761cd Add test for PR2992. by Anders Carlsson · 16 years ago
  11. a468d34 fix folding of '*doubleArray' by Nuno Lopes · 16 years ago
  12. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 16 years ago
  13. f9ef0c6 fix folding of comma if given a non-constant operand. by Nuno Lopes · 16 years ago
  14. f0d960a Fix testcase for 64-bit systems. by Sebastian Redl · 16 years ago
  15. f1c9c09 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  16. 1413217 merge some testcases together. by Chris Lattner · 16 years ago
  17. 4c99263 remove the wrong PR # from the file name. by Chris Lattner · 16 years ago
  18. 5c11d4e add PR# by Chris Lattner · 16 years ago
  19. b5cac86 These tests have no needed to redirect stderr to stdout. by Daniel Dunbar · 16 years ago
  20. d7f6050 "Fix" PR3021, don't crash on generating record types when we can't by Daniel Dunbar · 16 years ago
  21. bea06e4 Quick fix for PR2950, infinite loop generating debug info for by Daniel Dunbar · 16 years ago
  22. af668b0 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  23. 1c90363 Add test case to exercise IRgen "unsupported" path (mostly cleanup). by Daniel Dunbar · 16 years ago
  24. e5582f0 Added vec_set intrinsics by Mon P Wang · 16 years ago
  25. 5273f51 Quick patch for PR2784, assert genereting debug info for opaque by Daniel Dunbar · 16 years ago
  26. 4bf203c fix incorrect rdar number. by Chris Lattner · 16 years ago
  27. eb52b44 __CONSTANT_CFSTRINGS__ should be defined even in C mode, otherwise the CFSTR by Chris Lattner · 16 years ago
  28. 506ff88 Make sema and codegen allow __builtin___CFStringMakeConstantString as a valid by Chris Lattner · 16 years ago
  29. eb15425 Add X86 builtin code generation test case. by Daniel Dunbar · 16 years ago
  30. 1768a62 Add some builtins to codegen test case. by Daniel Dunbar · 16 years ago
  31. 33e2c5f fix test for latest changes in llvm asm representation by Nuno Lopes · 16 years ago
  32. ced4fcb Fix function-attributes test case to not rely on llvm-gcc. by Daniel Dunbar · 16 years ago
  33. d58139e Fix attributes test case to not run clang umpteen times. by Daniel Dunbar · 16 years ago
  34. e1226d2 Bug fix, result of isIntegerConstantExpr could be of incorrect width by Daniel Dunbar · 16 years ago
  35. e3a09e6 Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which represents a 'condition' declaration, e.g: "if (int x=0) {...}". by Argyrios Kyrtzidis · 16 years ago
  36. 219df66 Fix a number of issues w.r.t. emission of global for functions and by Daniel Dunbar · 16 years ago
  37. 3e98e51 Add missing RUN line by Daniel Dunbar · 16 years ago
  38. 02e7e74 Line endings: CRLF -> LF by Argyrios Kyrtzidis · 16 years ago
  39. 3a9a3e1 Set sext/zext on function result. - <rdar://problem/6156739> by Daniel Dunbar · 16 years ago
  40. 80e62c2 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago
  41. d417d96 Add two test cases for builtins (mostly related to object size builtins). by Daniel Dunbar · 16 years ago
  42. a56f746 In incompatible pointer-typed ?: expressions, add implicit conversion by Daniel Dunbar · 16 years ago
  43. eb4b705 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
  44. 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
  45. 9562726 Missed a test case writing a .ll file. by Daniel Dunbar · 16 years ago
  46. 2d6ca8d Update a number of CodeGen tests to not create .ll files in the test by Daniel Dunbar · 16 years ago
  47. 58d5ebb Fix subtle bug introduced in r54852. by Daniel Dunbar · 16 years ago
  48. a9dbb61 Fix test case RUN: line (thanks Argiris) by Daniel Dunbar · 16 years ago
  49. 3998d3f make sure the size of constant arrays is respected by Nuno Lopes · 16 years ago
  50. 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
  51. 709c00c Add test case for -fexceptions by Daniel Dunbar · 16 years ago
  52. 9ca8bb0 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
  53. c4aa96f Replace old bitfield test. by Daniel Dunbar · 16 years ago
  54. 8239713 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
  55. 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  56. 8c6f57c Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
  57. a735ad8 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
  58. 3c827a7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
  59. 894bbab Add test case for PR2001. by Daniel Dunbar · 16 years ago
  60. da8bf14 Fix const-init test case by Daniel Dunbar · 16 years ago
  61. 820b033 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
  62. 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
  63. 6bfed7e Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
  64. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  65. f9eede1 Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
  66. 9986eab Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
  67. 58a7a26 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
  68. 1e9660e Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
  69. 0d834b1 Fix long double test case by Daniel Dunbar · 16 years ago
  70. 16f2357 Rework codegen of case ranges by Daniel Dunbar · 16 years ago
  71. f31627f Fix a codegen crash on: by Chris Lattner · 16 years ago
  72. 1caae95 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 16 years ago
  73. a933c3c Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  74. 04b2900 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  75. c8aeb65 Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  76. 3cc5e5b Fix a bug where we didn't promote 'const float' (or typedefs) to by Chris Lattner · 16 years ago
  77. fca0ddd fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  78. abca361 fix this testcase after Mon Ping's intrinsic rename. by Chris Lattner · 16 years ago
  79. 6ee1f9c "This moves built-in Objective-C types up the scope chains to where they can be replaced by versions included from the runtime library's headers." by Chris Lattner · 16 years ago
  80. 5395ef0 Make this test actually pass, in addition to the previous patch by Eli Friedman · 16 years ago
  81. 1e692ac Basic support for volatile loads and stores. Stores the volatile by Eli Friedman · 16 years ago
  82. 874f608 Fix broken test. by Argyrios Kyrtzidis · 16 years ago
  83. c577a0e Multiple tests in a single test file must be linked with '&&'. by Argyrios Kyrtzidis · 16 years ago
  84. 07665da Fix the setup of CodeGen/bitfield.c test. by Argyrios Kyrtzidis · 16 years ago
  85. f93d528 Don't include complex.h or tgmath.h for this test; they aren't needed, by Eli Friedman · 16 years ago
  86. 4caf055 Add code to make test/CodeGen/struct-init.c work correctly without the by Eli Friedman · 16 years ago
  87. d4cbda6 implement the alias attirbute (in both Sema and Codegen) by Nuno Lopes · 16 years ago
  88. 2659052 Don't crash emitting an initializer for a static local with union type. by Eli Friedman · 16 years ago
  89. c53296e Fix crash with conversion to an address-space-qualified pointer. Bug by Eli Friedman · 16 years ago
  90. c55f98d Reorganize this loop a bit so it doesn't crash for empty unions. Fixes PR2419. by Eli Friedman · 16 years ago
  91. 77e1dfc implement constant expr. sub ptr ptr by Nuno Lopes · 16 years ago
  92. c134fcb For setting attributes, don't assume there are ParamVarDecls available, by Eli Friedman · 16 years ago
  93. 108f55d fix crash when codegening 'cond ? lhs : call-to-void-func()' by Nuno Lopes · 16 years ago
  94. 50c5c72 Don't assume that the type of a FunctionDecl is a FunctionType; that by Eli Friedman · 16 years ago
  95. 9141bee fix decl attributes cleaning by Nuno Lopes · 16 years ago
  96. 7dfa639 Make sure _Bool globals have the correct type. by Eli Friedman · 16 years ago
  97. 77eedd6 Calculate alignment for local variables. by Eli Friedman · 16 years ago
  98. cd5f4aa PR1893: Fix up the type of tentative definitions of incomplete array by Eli Friedman · 16 years ago
  99. a04a153 Fix and enable generating general union initializers. Essentially, what by Eli Friedman · 16 years ago
  100. cfb313b Fix constant vector init for initializer lists with an incomplete list by Eli Friedman · 16 years ago