- c1cc6dc Allow a pointer implicitly cast to a bool as a constant expression, as by Eli Friedman · 16 years ago
- f8f873d Make sure to allow assigning a pointer to a bool. by Eli Friedman · 16 years ago
- 4bd998b Cleanup/refactoring of Sema struct layout. This patch unifies the struct by Eli Friedman · 16 years ago
- 8ef1f26 Get the type right for wide string literals; it's wchar_t, not char. by Eli Friedman · 16 years ago
- 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
- 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
- f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
- 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
- 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
- 1435202 Fix this test on non-X86 platforms. by Eli Friedman · 16 years ago
- 6d1e4b5 Patch for PR2350; the issue was tnat we were allowing (with an error) by Eli Friedman · 16 years ago
- 6b2564c Fix this test so that it's valid; the point is to test for the crash, by Eli Friedman · 16 years ago
- b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 16 years ago
- 97c0a39 Fix a couple of bugs found by Neil Booth in the const-ness checking. by Eli Friedman · 16 years ago
- e590a84 Fix typo in test. by Eli Friedman · 16 years ago
- 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
- d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
- 6223c22 Add some more checking for compound literals. by Eli Friedman · 16 years ago
- 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
- c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
- d72d16e Add proper type-checking for pointer additiion; before, we were accepting by Eli Friedman · 16 years ago
- 5773a6c Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
- 235549c Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
- e701c0a Fix <rdar://problem/5928590> clang -fsyntax-only: "incompatible operand types ('int' and 'void')" on input that 'gcc -fsyntax-only' eats by Steve Naroff · 16 years ago
- a989def testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
- 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 17 years ago
- 72786e0 Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 17 years ago
- abb5758 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 17 years ago
- 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 17 years ago
- daa0311 Test was accidently nullified in previous check-in. by Fariborz Jahanian · 17 years ago
- 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 17 years ago
- 95e2c71 Fix rdar://5905347 a crash on invalid builtin, due to the by Chris Lattner · 17 years ago
- be34ac6 add testcase for pr2050 which is now fixed. by Chris Lattner · 17 years ago
- 57c9934 Another test case for properties in protocols. by Fariborz Jahanian · 17 years ago
- aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
- 3435096 Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 17 years ago
- dd6cec1 Convert CFLF to LF. CRLF was causing this test to fail under Mac OS X. by Ted Kremenek · 17 years ago
- 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
- c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
- 6cdf16d More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 17 years ago
- c35b9e4 Support for @dynamic AST build. by Fariborz Jahanian · 17 years ago
- f009795 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
- 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
- 59b6d5a fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
- e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
- 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
- 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
- def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
- 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
- 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
- b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
- 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
- aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
- d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
- a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
- e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
- 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
- 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
- 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
- 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
- e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
- fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
- e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
- 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
- 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
- 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
- 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
- c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
- 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
- b6789ca Add new test by Nate Begeman · 17 years ago
- aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
- 69153db move deprecated -> attributes.c by Chris Lattner · 17 years ago
- 7a03452 Chris added this testcase with r47837. The mail only shows one todo-warning but I see 3. Strangeness. Correcting lines 16 and 24. by Gabor Greif · 17 years ago
- ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
- bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 17 years ago
- da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 17 years ago
- fce90e3 testcase for attr deprecated, by Nuno Lopes. by Chris Lattner · 17 years ago
- 86e07b6 add a test case by Nate Begeman · 17 years ago
- 7380466 add some semantic checks for address spaces. by Chris Lattner · 17 years ago
- 49581f4 fix the second half of PR2041: __restrict is ok in c90 mode, even if by Chris Lattner · 17 years ago
- a0992b6 by Steve Naroff · 17 years ago
- 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
- d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 17 years ago
- 5a1b0c4 Add more tests by Anders Carlsson · 17 years ago
- 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
- 3e5849e Fix PR2041: restrict is not a keyword in c90. by Chris Lattner · 17 years ago
- f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
- 708eed5 Nevermind, these tests work... I messed up my testing. by Eli Friedman · 17 years ago
- d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 17 years ago
- e39bfd0 by Steve Naroff · 17 years ago
- 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 17 years ago
- bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 17 years ago
- 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 17 years ago
- 9532414 by Steve Naroff · 17 years ago
- 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 17 years ago
- 3a15485 by Steve Naroff · 17 years ago
- b43eaa5 by Steve Naroff · 17 years ago
- a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 17 years ago
- f76f5ed Add a couple of sema tests for qualifiers with conditionals containing void*. by Eli Friedman · 17 years ago
- 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago