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
/
AST
/
ASTContext.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Basic support for name mangling of C++11 lambda expressions. Because
Douglas Gregor
2012-02-20
1
-0
/
+7
*
Within the body of a lambda expression, decltype((x)) for an
Douglas Gregor
2012-02-12
1
-34
/
+3
*
Track whether a function type has a trailing return type as type sugar. Use this
Richard Smith
2012-02-10
1
-1
/
+4
*
Revise the SplitQualType interface to make it its own thing instead of
John McCall
2012-02-08
1
-24
/
+24
*
Revert my patches which removed Diagnostic.h includes by moving some operator...
Benjamin Kramer
2012-02-07
1
-7
/
+0
*
objc: fixes a problem in block type comparison involving
Fariborz Jahanian
2012-02-06
1
-2
/
+4
*
Added location for template keyword in TemplateSpecializationTypeLoc. In the ...
Abramo Bagnara
2012-02-06
1
-0
/
+1
*
Basic: import SmallString<> into clang namespace
Dylan Noblesmith
2012-02-05
1
-1
/
+1
*
Basic: import OwningPtr<> into clang namespace
Dylan Noblesmith
2012-02-05
1
-1
/
+1
*
Move various diagnostic operator<< overloads out of line and remove includes ...
Benjamin Kramer
2012-02-04
1
-0
/
+1
*
Move Storage and StorageAllocator out of the PartialDiagnostic class so we ca...
Benjamin Kramer
2012-02-04
1
-0
/
+6
*
When a pack expansion occurs in the template argument list of an alias
Douglas Gregor
2012-02-03
1
-12
/
+20
*
Move isSentinelNullExpr() from Sema to ASTContext to make it more widely
Argyrios Kyrtzidis
2012-02-03
1
-0
/
+18
*
r149587 reverted
Anton Yartsev
2012-02-02
1
-3
/
+1
*
Fix for PR10657 (http://llvm.org/bugs/show_bug.cgi?id=10657)
Anton Yartsev
2012-02-02
1
-1
/
+3
*
objc: 'id' and block pointer compare in mergeTypes is
Fariborz Jahanian
2012-01-26
1
-3
/
+6
*
objc: allow block pointer matching 'id' type when
Fariborz Jahanian
2012-01-26
1
-1
/
+5
*
Add ability to specifiy 'restrict' on parameters of builtins, and correct thi...
Ted Kremenek
2012-01-20
1
-0
/
+3
*
Delay the creation of the built-in Objective-C class 'Protocol' by
Douglas Gregor
2012-01-17
1
-5
/
+14
*
Remove unreachable code in Clang. (replace with llvm_unreachable where approp...
David Blaikie
2012-01-17
1
-8
/
+6
*
Remove unnecessary default cases in switches over enums.
David Blaikie
2012-01-17
1
-2
/
+3
*
De-virtualize getPreviousDecl() and getMostRecentDecl() when we know
Douglas Gregor
2012-01-14
1
-5
/
+5
*
Fix canonicalization of protocol-qualified types
Douglas Gregor
2012-01-02
1
-1
/
+9
*
Use declaresSameEntity() when comparing ObjCProtocolDecls, and
Douglas Gregor
2012-01-01
1
-5
/
+5
*
If there is a definition of an ObjCInterfaceDecl, make it the Decl returned f...
Douglas Gregor
2011-12-16
1
-0
/
+4
*
Fix chaining of ObjCInterfaceDecl redeclarations
Douglas Gregor
2011-12-16
1
-2
/
+8
*
Replace all comparisons between ObjCInterfaceDecl pointers with calls
Douglas Gregor
2011-12-15
1
-1
/
+1
*
Added an assertion about overflow in sizeof evaluation. This does not solve t...
Abramo Bagnara
2011-12-13
1
-1
/
+3
*
Keep track of all of the import declarations that are parsed or
Douglas Gregor
2011-12-03
1
-1
/
+15
*
Add bigger method type encodings to protocol objects. <rdar://problem/10492418>
Bob Wilson
2011-11-30
1
-13
/
+63
*
Fix the signature of the getcontext builtin. Patch by Dimitry Andric.
Rafael Espindola
2011-11-13
1
-2
/
+12
*
Correcting grammar.
David Blaikie
2011-11-06
1
-1
/
+1
*
[libclang] For a class extension, give it a unique USR but for any property o...
Argyrios Kyrtzidis
2011-11-01
1
-0
/
+11
*
Teach format string analysis that "%zu" means size_t.
Hans Wennborg
2011-10-27
1
-1
/
+11
*
Correctly perform integral promotions on wchar_t/char16_t/char32_t in C++. <r...
Eli Friedman
2011-10-26
1
-12
/
+28
*
Restore r142914 and r142915, now with missing file and apparent
John McCall
2011-10-25
1
-0
/
+3
*
Revert r142914 and r142915, due to possibly missing file.
NAKAMURA Takumi
2011-10-25
1
-3
/
+0
*
Introduce a placeholder type for "pseudo object"
John McCall
2011-10-25
1
-0
/
+3
*
Add a new placeholder type to represent "unbridged"
John McCall
2011-10-17
1
-0
/
+3
*
Provide half floating point support as a storage only type.
Anton Korobeynikov
2011-10-14
1
-1
/
+10
*
Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic...
Eli Friedman
2011-10-14
1
-3
/
+15
*
Constant expression evaluation refactoring:
Richard Smith
2011-10-10
1
-14
/
+11
*
Support for C1x _Atomic specifier (see testcase). This is primarily being co...
Eli Friedman
2011-10-06
1
-0
/
+57
*
Use a sidetable in ASTContext for ParmVarDecls whose index exceeds the 8 bits...
Ted Kremenek
2011-10-06
1
-0
/
+11
*
c: assignment/init of a function pointer whose function(s)
Fariborz Jahanian
2011-10-05
1
-5
/
+5
*
Allow getting all source locations of selector identifiers in a ObjCMethodDecl.
Argyrios Kyrtzidis
2011-10-03
1
-3
/
+3
*
Add support for alignment-specifiers in C1X and C++11, remove
Peter Collingbourne
2011-09-29
1
-1
/
+1
*
objc arc: Diagnose block pointer type mismatch when
Fariborz Jahanian
2011-09-28
1
-0
/
+25
*
Only print _Bool as 'bool' when 'bool' is defined as an object-like
Douglas Gregor
2011-09-27
1
-6
/
+0
*
When 'bool' is not a built-in type but is defined as a macro, print
Douglas Gregor
2011-09-27
1
-3
/
+9
[prev]
[next]