1. 4ed9d66 by Steve Naroff · 17 years ago
  2. 858eece Use APFloat for the representation of FP immediates, ask the target by Chris Lattner · 17 years ago
  3. 4bc52ce by Steve Naroff · 17 years ago
  4. c39ca26 by Steve Naroff · 17 years ago
  5. d3f5ee4 by Steve Naroff · 17 years ago
  6. f0c31dd Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  7. 5cbb02f Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  8. 87d58b4 Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  9. 0acc9c9 by Steve Naroff · 17 years ago
  10. 3496d52 Silence VC++ warnings, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  11. 1c9de71 by Steve Naroff · 17 years ago
  12. 7c9d72d by Steve Naroff · 17 years ago
  13. e14e554 by Steve Naroff · 17 years ago
  14. b37522e diagnose extended uses of offsetof by Chris Lattner · 17 years ago
  15. 762b7c7 Add InitListExpr class. by Anders Carlsson · 17 years ago
  16. 68adb48 Sema::ParseCastExpr() missing call to UsualUnaryConversions(). by Steve Naroff · 17 years ago
  17. 2af6a80 implement pretty printing of offsetof by Chris Lattner · 17 years ago
  18. 0d9bcea implement initial sema support for __builtin_offsetof by Chris Lattner · 17 years ago
  19. bd3cc22 Fix a regression on test/Sema/unused-expr.c by fixing the type predicates by Chris Lattner · 17 years ago
  20. 9bd4708 Spaces not tabs. by Neil Booth · 17 years ago
  21. 7421e9c Ensure we diagnose long long literals in C90 mode. by Neil Booth · 17 years ago
  22. ec761af Added checking (during parsing) of comparison of floating point values using == or !=. by Ted Kremenek · 17 years ago
  23. db65e05 by Steve Naroff · 17 years ago
  24. d1ad6ae by Steve Naroff · 17 years ago
  25. cae537d by Steve Naroff · 17 years ago
  26. f420df1 add a sourcelocation to binary operator to keep track of the location of the operator. by Chris Lattner · 17 years ago
  27. 91b03f7 by Steve Naroff · 17 years ago
  28. 3b6157f Some minor aesthetic changes to the control flow. by Steve Naroff · 17 years ago
  29. 3b565d6 Fix remaining bugs with complex/float promotions. by Steve Naroff · 17 years ago
  30. 45fc982 Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). by Steve Naroff · 17 years ago
  31. c33c060 by Steve Naroff · 17 years ago
  32. 3cf497f by Steve Naroff · 17 years ago
  33. a16e42d require that operands to __real/__imag are complex or arithmetic. This by Chris Lattner · 17 years ago
  34. 1de66eb add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  35. c04a0bd 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  36. 254f3bc merge checkrelational and checkequality into CheckCompareOperands, by Chris Lattner · 17 years ago
  37. 22be842 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  38. b2f9f55 by Steve Naroff · 17 years ago
  39. 0f32f43 by Steve Naroff · 17 years ago
  40. 5110ad5 remove a dead argument by Chris Lattner · 17 years ago
  41. 03931a7 Implement sema support for __real/__imag nodes. by Chris Lattner · 17 years ago
  42. 8f70836 by Steve Naroff · 17 years ago
  43. d30e193 by Steve Naroff · 17 years ago
  44. 71e4bdf by Steve Naroff · 17 years ago
  45. 98540b6 fix a bug where we would type 0ULL as unsigned instead of unsigned long long by Chris Lattner · 17 years ago
  46. 6acc0f4 Remove a FIXME, allowing ++/-- on Complex types (a GCC extension). by Steve Naroff · 17 years ago
  47. 8be1d40 Parse @encode expressions. by Anders Carlsson · 17 years ago
  48. a66cad4 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  49. 3e9b43b Return true in case of error, which is what other functions do. by Anders Carlsson · 17 years ago
  50. e7e7aa2 Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  51. 4462cb0 by Steve Naroff · 17 years ago
  52. 081ed87 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  53. 2e64c07 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  54. ecc4fa1 by Steve Naroff · 17 years ago
  55. 94cd93f by Steve Naroff · 17 years ago
  56. 6e8227b by Steve Naroff · 17 years ago
  57. 5e4f6bd by Steve Naroff · 17 years ago
  58. 8934552 Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  59. 93c5301 by Steve Naroff · 17 years ago
  60. a0d03a7 Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElementExpr respectively. This is for consistency with other expr nodes end with *Expr. by Chris Lattner · 17 years ago
  61. 9096b79 rename some helpers, have them return the idx of the field being accessed. by Chris Lattner · 17 years ago
  62. 5b52892 by Steve Naroff · 17 years ago
  63. 63bad2d by Steve Naroff · 17 years ago
  64. 7122514 simplify some type checking code, don't explicitly access canonical types. by Chris Lattner · 17 years ago
  65. e35a104 split the rest of the type predicates into pure predicates: by Chris Lattner · 17 years ago
  66. f0c4a0a rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  67. 7931f4a make isPointerType() a pure predicate, rename the by Chris Lattner · 17 years ago
  68. 7cbb146 by Steve Naroff · 17 years ago
  69. 70dd20d Don't use canonical type for sema here. In by Chris Lattner · 17 years ago
  70. ba67f69 Finish up semantic analysis for vector components. by Steve Naroff · 17 years ago
  71. 82113e3 by Steve Naroff · 17 years ago
  72. c11705f by Steve Naroff · 17 years ago
  73. 1b8a46c Implement syntax/semantic analysis for OCU Vector Components. by Steve Naroff · 17 years ago
  74. dd598cf Fix the following bogus diagnostic...reported by Jeroen. by Steve Naroff · 17 years ago
  75. 2cb6638 by Steve Naroff · 17 years ago
  76. 7564406 - Fix commit in Parser.h (patch by Kevin Andre). by Steve Naroff · 17 years ago
  77. 4b00965 Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago