aboutsummaryrefslogtreecommitdiff
path: root/test/Sema
AgeCommit message (Expand)Author
2010-11-11Undo a refactor-o and base the bitfield-truncation warning on theJohn McCall
2010-11-11Extend the bitfield-truncation warning to initializations.John McCall
2010-11-10When -Wconversion computes the range of a type, it uses the (bit-)range John McCall
2010-11-10Tweak to bitfield-overflow warning: don't warn about storingJohn McCall
2010-11-09Typo.John McCall
2010-11-09Add a warning for implicit truncation of constant values due toJohn McCall
2010-11-09Split out -Wconversion warnings about constant precision into theirJohn McCall
2010-11-09Test moved to its correct place.Fariborz Jahanian
2010-11-09Fix source locations in unnamed bitfield diagnostic, from JakubDouglas Gregor
2010-11-08Document Clang's support for attributes on individual enumerators andJohn McCall
2010-11-03When setting a tied check if it's already tied. If it's tied to another const...Anders Carlsson
2010-11-03A number in an input constraint can't point to a read-write ('+') constraint....Anders Carlsson
2010-10-30When list-initializing a vector, try to copy-initialize from vectors insteadJohn McCall
2010-10-28Implement an indirect-goto optimization for goto *&&lbl and respect thisJohn McCall
2010-10-25Look through the address-of operator to find the function beingDouglas Gregor
2010-10-25When we're calling a function that we know based on its K&R-styleDouglas Gregor
2010-10-24Implement GNU C extension: two types are compatible if they appearPeter Collingbourne
2010-10-24- Fixed subexpressions evaluation order for binary operators to match order i...Marcin Swiderski
2010-10-24Move the "used but marked unused" warning behind a special warning flag for now.Anders Carlsson
2010-10-22Warn if a variable marked with the "unused" attribute is used. Patch by Darin...Anders Carlsson
2010-10-22Parse attributes on enumerators and instantiate attributes on enum decls.John McCall
2010-10-21Previously, the printf warnings would say your arguments type was 'int' when ...Ted Kremenek
2010-10-19test/Sema/return.c: Cygwin does not have _longjmp().NAKAMURA Takumi
2010-10-18Microsoft enum extensions. 2 things will change on -fms-extensions:Francois Pichet
2010-10-15Allow list-initialization of a local variable of class type with aDouglas Gregor
2010-10-15zap trailing whitespaceGabor Greif
2010-10-15testcase for http://llvm.org/PR8371 of my last commit, r116570Gabor Greif
2010-10-14Tweak the typo-correction implementation to determine correctionsDouglas Gregor
2010-10-12fix PR7885, rejecting invalid uses of __builtin_constant_p.Chris Lattner
2010-10-12C's comma operator performs lvalue conversion on both its operands;John McCall
2010-10-11Per discussion with Sanjiv, remove the PIC16 target from mainline. When/ifChris Lattner
2010-10-10fix PR8217, a silent miscompilation of invalid code.Chris Lattner
2010-10-09Fixed __builtin_constant_p return type.Abramo Bagnara
2010-10-08This patch fixes multiple issues in clang's designated init builder andDouglas Gregor
2010-10-08__attribute__((aligned(n))) directly specifies the alignment of a declarationJohn McCall
2010-10-08Track the location of the context requiring an implicit conversion and use itJohn McCall
2010-10-08Implement -fshort-enums (rdar://8490496).Argyrios Kyrtzidis
2010-10-07Fixed cast to union with anonymous bitfields.Abramo Bagnara
2010-10-06Patch for adding message to unavailable attribute.Fariborz Jahanian
2010-10-06Add message to attribute(deprecated).Fariborz Jahanian
2010-10-06Issue deprecated warning when typeof uses typedefFariborz Jahanian
2010-10-06Remove hard CRLF end-of-line markers from two files. These should be addedChandler Carruth
2010-10-06Provide a slightly specialized diagnostic for tautological comparisonsJohn McCall
2010-10-05Issue deprecated warning when typeof uses anFariborz Jahanian
2010-10-01diagnose errors when a builtin that require constant arguments don't have them.Chris Lattner
2010-09-29Add support for attribute((naked)), patch by Zoxc on cfe-commits!Daniel Dunbar
2010-09-28Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848...Argyrios Kyrtzidis
2010-09-27Fixed isConstantInitializer for __builtin_choose_expr.Abramo Bagnara
2010-09-23When warning about comparing an unsigned int to being >= 0, don't issue a war...Ted Kremenek
2010-09-20Check in support for OpenCL conditional operator on vector types.Nate Begeman