index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Parse
/
ParseObjc.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Daniel really really likes = instead of += :)
Chris Lattner
2008-11-20
1
-1
/
+1
*
Rename IdentifierInfo::isName to ::isStr. Use a nifty trick
Chris Lattner
2008-11-20
1
-7
/
+7
*
Fix <rdar://problem/6150376> [sema] crash on invalid message send.
Steve Naroff
2008-11-19
1
-4
/
+6
*
remove some uses of IdentifierInfo::getName()
Chris Lattner
2008-11-19
1
-9
/
+8
*
Use smallstring instead of new[]'ing a string. This simplifies
Chris Lattner
2008-11-19
1
-8
/
+4
*
remove uses of IdentifierInfo::getName()
Chris Lattner
2008-11-19
1
-2
/
+1
*
remove the last couple obsolete forms of Parser::Diag.
Chris Lattner
2008-11-18
1
-2
/
+2
*
Change a couple of the Parser::Diag methods to return DiagnosticInfo
Chris Lattner
2008-11-18
1
-22
/
+20
*
some minor cleanups to ParseObjCTypeName:
Chris Lattner
2008-10-22
1
-17
/
+12
*
Fix a crasher during error recovery in Parser::ParseObjCTypeName().
Steve Naroff
2008-10-21
1
-1
/
+2
*
eliminate ObjCPropertyAttrs an corresponding enums, just use
Chris Lattner
2008-10-20
1
-9
/
+9
*
rearrange some code.
Chris Lattner
2008-10-20
1
-17
/
+16
*
more simplifications to error recovery in ParseObjCPropertyAttribute
Chris Lattner
2008-10-20
1
-28
/
+18
*
move some code around to make it fall through more, no functionality change.
Chris Lattner
2008-10-20
1
-25
/
+24
*
reject properties completely in objc1 instead of emitting
Chris Lattner
2008-10-20
1
-7
/
+15
*
More property attribute recovery improvements. Instead of this:
Chris Lattner
2008-10-20
1
-16
/
+13
*
significantly simplify and clean up error recovery in
Chris Lattner
2008-10-20
1
-25
/
+18
*
fix a crash on unnamed properties like:
Chris Lattner
2008-10-20
1
-7
/
+13
*
simplify some code by using ExpectAndConsume. When an error
Chris Lattner
2008-10-20
1
-9
/
+6
*
refactor a bunch of code:
Chris Lattner
2008-10-20
1
-44
/
+27
*
fix some minor error recovery bugs in ParseObjCInterfaceDeclList
Chris Lattner
2008-10-20
1
-12
/
+27
*
restructure the body of the ParseObjCInterfaceDeclList loop
Chris Lattner
2008-10-20
1
-67
/
+77
*
Pass postfix attributes to ActOnFields.
Daniel Dunbar
2008-10-03
1
-1
/
+1
*
Enter a new scope for a @try block.
Ted Kremenek
2008-09-26
1
-0
/
+2
*
Parser support for prefix __attribute__ on @protocol.
Daniel Dunbar
2008-09-26
1
-2
/
+3
*
Have @finally introduce a new scope.
Ted Kremenek
2008-09-26
1
-0
/
+3
*
Fix rdar://6222856: the receiver of a message expr is an
Chris Lattner
2008-09-19
1
-1
/
+1
*
Synthesize property setter method as we do for getter.
Daniel Dunbar
2008-08-26
1
-4
/
+22
*
Reserved C++ words are valid selectors in Objective-C++
Anders Carlsson
2008-08-23
1
-35
/
+64
*
we already have a handle on the 'in' keyword, don't bother getting two.
Chris Lattner
2008-08-23
1
-21
/
+21
*
Fix a FIXME by not creating an invalid AST on erroneous input. Also
Chris Lattner
2008-08-23
1
-11
/
+23
*
Move AsmLabel into Declarator instead of just a parameter to
Daniel Dunbar
2008-08-05
1
-1
/
+1
*
Fix rdar://6124613 a crash on invalid code.
Chris Lattner
2008-08-05
1
-45
/
+54
*
Add more Parser/Sema support for GCC asm-label extension.
Daniel Dunbar
2008-08-05
1
-1
/
+1
*
Pull protocol resolution of out ActOnStartClassInterface, this is also the
Chris Lattner
2008-07-26
1
-44
/
+11
*
refactor protocol resolution out of ActOnStartCategoryInterface
Chris Lattner
2008-07-26
1
-7
/
+8
*
pull protocol resolution out into ActOnStartProtocolInterface.
Chris Lattner
2008-07-26
1
-7
/
+49
*
gcc requires a semicolon at the end of an interface, unlike its extension for...
Chris Lattner
2008-07-25
1
-3
/
+0
*
Move fix in r54013 from the parser to sema.
Steve Naroff
2008-07-25
1
-6
/
+3
*
Fix Parser::ParseObjCMethodDefinition(). Only call the actions module for val...
Steve Naroff
2008-07-25
1
-3
/
+6
*
minor cleanup to the actions interface to pass around SmallVectorImpl instead
Chris Lattner
2008-07-21
1
-17
/
+24
*
Initial work on additional memory collection for ObjC AST objects. We now
Ted Kremenek
2008-06-06
1
-3
/
+6
*
Parser::ParseObjCSynchronizedStmt() needs to Enter/Exit a decl scope.
Steve Naroff
2008-06-04
1
-0
/
+6
*
Fix parser bug/FIXME with @catch.
Steve Naroff
2008-06-03
1
-7
/
+11
*
Make sure the source location for @property points the the @-sign (not the de...
Steve Naroff
2008-05-22
1
-1
/
+1
*
This patch introduces declaration of getter methods for ObjC2's
Fariborz Jahanian
2008-05-07
1
-2
/
+7
*
Patch to refactor setter/getter names of property attributes into Selector
Fariborz Jahanian
2008-05-06
1
-0
/
+5
*
percolate @optional/@required protocols down to ASTs for
Fariborz Jahanian
2008-05-05
1
-1
/
+2
*
Default visbility for instance variables is protected.
Fariborz Jahanian
2008-04-29
1
-1
/
+1
*
Support for @dynamic AST build.
Fariborz Jahanian
2008-04-21
1
-1
/
+5
[next]