- 9ba23b4 Improve recovery when there is a stray ']' or ')' before the ';' at by Douglas Gregor · 14 years ago
- 751f692 Improve recovery when a comma is missing between enumerators in an by Douglas Gregor · 14 years ago
- b1f6fa4 Improve diagnostic and recovery when missing a comma between base or by Douglas Gregor · 14 years ago
- 4ea884b Replace loops with SmallVector::append. by Benjamin Kramer · 14 years ago
- fdc9025 Due to asmparser improvements, this error message is now better by Chris Lattner · 14 years ago
- f84cde1 Fix a C++ PCH problem which was exposed by r113019. CXXBaseOrMemberInitializer's IsWritten and source order is not set. by Argyrios Kyrtzidis · 14 years ago
- 32212f9 remove curly quotes, patch by Dimitry Andric! by Chris Lattner · 14 years ago
- 0dc7509 LastFieldBitfield in CGObjCCommonMac::BuildAggrIvarLayout keeps bitfields or unnamed fields but later the code by Argyrios Kyrtzidis · 14 years ago
- d438b3d FinishBlock() is essentially doing nothing except returning '!badCFG'. by Zhongxing Xu · 14 years ago
- 1b3b7cb Simplify CFG construction: bail out early when we have a bad CFG. by Zhongxing Xu · 14 years ago
- 79e9e9d Make "-ccc-cxx" option work on Linux. Patch by nobled. by Rafael Espindola · 14 years ago
- fdac7d4 Get rid of unnecessary return. by Eli Friedman · 14 years ago
- 60b4d04 Update test for r113128. by Eli Friedman · 14 years ago
- bd7de38 move the hackaround for PR6537 to catch unions as well, fixing the ICE in PR7151 by Chris Lattner · 14 years ago
- d0db03a clean up some formatting. by Chris Lattner · 14 years ago
- a7dedf7 PR7242: Make sure to use a different context for evaluating constant by Eli Friedman · 14 years ago
- 6d6370e fix PR7192 by defining wchar_t in a more conventional way. The by Chris Lattner · 14 years ago
- 343d65c Tell the VS headers that char16_t and char32_t are keywords, so yvals.h doesn't try to define them as typedefs. by Steven Watanabe · 14 years ago
- 96de259 fix 7320: we can't delete a trailing space if it doesn't exist. by Chris Lattner · 14 years ago
- 957c094 PR8023: Don't crash on invalid uses of __real__ on class types in C++. by Eli Friedman · 14 years ago
- 271b665 No functional change. Replace Out << 'a' << 'b' with Out << "ab" and spell by Nick Lewycky · 14 years ago
- d7e52b8 "const id<NSFoo> *" instead of "id<NSFoo> const *". by Chris Lattner · 14 years ago
- 78643b0 "const id<NSFoo> *" not "id<NSFoo> const*" by Chris Lattner · 14 years ago
- 2f69a81 "const std::vector<int>*" not "std::vector<int> const*" by Chris Lattner · 14 years ago
- 219b9e4 "const _Complex float *" not "_Complex float const *" by Chris Lattner · 14 years ago
- 0c42bb6 'const std::type_info*' instead of 'std::type_info const*' by Chris Lattner · 14 years ago
- 66cf2d1 print "const intptr_t" instead of "intptr_t const" by Chris Lattner · 14 years ago
- 58f9e13 make clang print types as "const int *" instead of "int const*", by Chris Lattner · 14 years ago
- 59742de revert this, it isn't safe. by Chris Lattner · 14 years ago
- 37edc00 tidy up by Chris Lattner · 14 years ago
- c3f8c07 revise r112365 to fix the actual problem: the isa<TagType>(Underlying) by Chris Lattner · 14 years ago
- 699c060 Casting of a property reference to 'void' did not by Fariborz Jahanian · 14 years ago
- 24dce6e zap more dead code. by Chris Lattner · 14 years ago
- 66392d4 zap dead code. by Chris Lattner · 14 years ago
- 26fc28d Petty optimization. by John McCall · 14 years ago
- f38ef0c fix a crash in RecursiveASTVisitor's child classes (PR8403); reviewed by chandlerc. by Zhanyong Wan · 14 years ago
- e8d7beb Synchronize code-completion cursor kinds with indexing cursor by Douglas Gregor · 14 years ago
- 469a20d Truncate block variable of bool type to i1 when its by Fariborz Jahanian · 14 years ago
- 030ef47 Fix PR7402 when it strikes via template instantiation. by Chandler Carruth · 14 years ago
- e63438b It's OK for classes to have flexible array elements (but not unions). by Anders Carlsson · 14 years ago
- 7925561 Cope with llvm's reference to bool type of 'i1' vs. clang's by Fariborz Jahanian · 14 years ago
- a96a690 Clean up some whitespace and comments from this test that were remnants of by Chandler Carruth · 14 years ago
- 17fb855 Allow anonymous and local types. The support was already in place for these, by Chandler Carruth · 14 years ago
- 9c20fa9 A constant initializer never matches the type of the variable it's by John McCall · 14 years ago
- aaa80b2 Implement libclang visitation for UnresolvedMemberExpr. This is the by Douglas Gregor · 14 years ago
- 53e0c52 update svn:ignore by Nuno Lopes · 14 years ago
- 3846ca2 Use std::string instead of llvm::StringRef to avoid dangling ref. by Fariborz Jahanian · 14 years ago
- 25d6362 libclang visitation for CXXDependentScopeMemberExpr by Douglas Gregor · 14 years ago
- afbc681 Use getSpelling to get original text of the c++ operator token. (radar 8328250). by Fariborz Jahanian · 14 years ago
- bfebed2 libclang visitation for DependentScopeDeclRefExpr by Douglas Gregor · 14 years ago
- 34916db Add missing #include by Douglas Gregor · 14 years ago
- 217a345 Put the info on testing from the command line into its own section by Dawn Perchik · 14 years ago
- 3f2cc6f fix a hard coded version number, PR8031. Patch by 'nobled'. by Chris Lattner · 14 years ago
- 8e9006b fix lookup of bits/c++config.h on mingw, patch by Ismail Donmez! by Chris Lattner · 14 years ago
- ff67789 Simplify code-completion result sorting a bit by Douglas Gregor · 14 years ago
- 1f7089c Remove end-of-line translation properties from test, in the hopes of fixing this test on Windows by Douglas Gregor · 14 years ago
- 9536572 Avoid unnecessary redirect, so that stderr shows up in output. by Daniel Dunbar · 14 years ago
- c5138b2 First test commit by Francois Pichet. _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES is not a predefined macro, remove it. by Francois Pichet · 14 years ago
- 027ac44 Update the internals manual for the removal of Action, as well as other by John McCall · 14 years ago
- fe24e05 Add a quick-and-dirty hack to give a better diagnostic for [class.protected] by John McCall · 14 years ago
- fae9622 "I see dead code". IdempotentOperationChecker::isTruncationExtensionAssignment by Chris Lattner · 14 years ago
- 8c465e6 Devirtualize Sema, kill off DeleteExpr and DeleteStmt, and reformat. by John McCall · 14 years ago
- db50547 IRgen: Fix silly thinko in r112021, which was generating code for the same expr by Daniel Dunbar · 14 years ago
- 52fc314 Add symantic support for the Pascal calling convention via by Dawn Perchik · 14 years ago
- 47a88fa Translate NEON vabdl, vaba, and vabal builtins to be implemented using the by Bob Wilson · 14 years ago
- fc40028 Re-commit r112916 with an additional fix for the self-host failures. by John McCall · 14 years ago
- be74740 Patch to allow alternative representation of c++ by Fariborz Jahanian · 14 years ago
- 4938f23 Static local variables don't result in global constructors being emitted. by Anders Carlsson · 14 years ago
- 56af446 Support pointer arithmetic in SimpleSValuator involving direct constants. by Ted Kremenek · 14 years ago
- 8046037 Remove bogus assertions. by Ted Kremenek · 14 years ago
- 6d4c022 Add optional record of "location" SVals in the environment. When we analyzing loads/stores, we lose the location SVal, which makes it difficult to recover in some cases (e.g., for post diagnostics). This is prep for pending changes to GRExprEngine. by Ted Kremenek · 14 years ago
- 124f5d5 Add GRState::getSimplifiedSVal(), which provides an API hook for doing symbol -> constant folding. This isn't used yet, but by Ted Kremenek · 14 years ago
- 4462ee2 Fix enum: CallEnter/CallExit are StmtPoints by Ted Kremenek · 14 years ago
- 2d0e243 Remove now unused function. by Anders Carlsson · 14 years ago
- 55f1da8 Fix a typo. by Daniel Dunbar · 14 years ago
- 2b8d60d Revert r112916, it's breaking selfhost pretty badly. by John McCall · 14 years ago
- 3e7cf38 Revert "Another i1 vs. i8 type mismatch issue. This time", it breaks some projects. by Daniel Dunbar · 14 years ago
- 5d1d7ae Get rid of the "functions declared 'noreturn' should have a 'void' result type" warning. by Anders Carlsson · 14 years ago
- 714bf17 tests: Fix a dependency on the temporary value names. by Daniel Dunbar · 14 years ago
- 52968ab It's not safe to use the generic CXXMethodDecl overload of CGT::getFunctionInfo by John McCall · 14 years ago
- 400b607 Add support for Borland extensions via option -fborland-extensions by Dawn Perchik · 14 years ago
- c5c446c IRgen/Obj-C: Rewrite Objective-C bit-field access to compute the access strategy by Daniel Dunbar · 14 years ago
- e7a80bd IRgen: Move CGBitFieldInfo strategy computation helpers to static member by Daniel Dunbar · 14 years ago
- 2bbbe50 Reapply 112850 and 112839 with a constructor for the BinaryOperatorData struct. Clang would zero out the enum and pointer in the struct in some conditions, but GCC would never zero out the values. by Tom Care · 14 years ago
- cc09c02 Fix a few more ConvertTypes that should be ConvertTypeForMems, fixing by Douglas Gregor · 14 years ago
- d4b25cb Implement __has_virtual_destructor. Patch by Steven Watanabe. by Sebastian Redl · 14 years ago
- 6b61fcd stop looking for #uses comments. by Chris Lattner · 14 years ago
- d5a83fb remove some tests that aren't adding any value: the check lines don't by Chris Lattner · 14 years ago
- 798ad97 Add a couple of FIXMEs. The types of palignr are different here than in GCC. by Bill Wendling · 14 years ago
- 2235941 Add a bunch of missing bitcasts for clang NEON builtin expansions. Radar 8388233 by Bob Wilson · 14 years ago
- 1f7b590 Teach libclang to visit OverloadExprs, so that we can reuse this by Douglas Gregor · 14 years ago
- 40bfbbc sabre points out that the timing here is pretty pessimal; I'll retry the by John McCall · 14 years ago
- 8ab670e Add libclang visitation for UnresolvedLookupExprs by Douglas Gregor · 14 years ago
- 51b0a52 Experimentally move the tautological comparison warnings from -Wsign-compare by John McCall · 14 years ago
- 6f7198f Add libclang visitation for C++ pseudo-destructor expressions. by Douglas Gregor · 14 years ago
- 1c4345e Reorder the MMX builtins to be in their own ostracized group. by Bill Wendling · 14 years ago
- 6014f96 Newline at end of file. by Bill Wendling · 14 years ago
- e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 14 years ago
- da135b1 Teach libclang not to recursive into default argument expressions by Douglas Gregor · 14 years ago
- 5a41021 Add a compatibility note about why Clang rejects jumps past __block variables. by Daniel Dunbar · 14 years ago