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
/
Sema
/
SemaDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add Sema implementation of #pragma pack stack.
Daniel Dunbar
2008-10-14
1
-0
/
+95
*
silence some release-assert warnings.
Chris Lattner
2008-10-12
1
-7
/
+7
*
Make sema and codegen allow __builtin___CFStringMakeConstantString as a valid
Chris Lattner
2008-10-06
1
-4
/
+12
*
Add a Expr::isEvaluatable method, eliminate isBuiltinConstantExpr
Chris Lattner
2008-10-06
1
-10
/
+5
*
"Enhance" CheckArithmeticConstantExpression to accept ?: with a constant
Chris Lattner
2008-10-06
1
-18
/
+41
*
Merge postfix attributes on record decls.
Daniel Dunbar
2008-10-03
1
-1
/
+4
*
Pass postfix attributes to ActOnFields.
Daniel Dunbar
2008-10-03
1
-1
/
+2
*
Add getTypeSpecStartLoc() to VarDecls and FunctionDecls.
Steve Naroff
2008-10-03
1
-3
/
+6
*
Add Builtins.def attribute for "can be a constant expression".
Daniel Dunbar
2008-10-02
1
-2
/
+2
*
Changed Sema::CheckForConstantInitializer to allow global block literals.
Steve Naroff
2008-10-02
1
-0
/
+4
*
Add a random C99 comment/reference.
Steve Naroff
2008-09-29
1
-0
/
+1
*
Replace a comparison with a static list of builtins that was wrong (it
Chris Lattner
2008-09-28
1
-4
/
+1
*
Fix http://llvm.org/bugs/show_bug.cgi?id=2760.
Steve Naroff
2008-09-17
1
-2
/
+2
*
Add --suppress-system-warnings (on by default, use =0 to disable)
Daniel Dunbar
2008-09-12
1
-5
/
+7
*
Add Sema::isDeclInScope which wraps IdentifierResolver::isDeclInScope.
Argyrios Kyrtzidis
2008-09-09
1
-16
/
+11
*
Tweak implementation for allowing ObjC builtin type redefinitions.
Steve Naroff
2008-09-09
1
-5
/
+19
*
Add ThreadSpecified bit to Decl.
Daniel Dunbar
2008-09-08
1
-5
/
+4
*
Add comment back that Argiris pointed out that I mistakenly removed (the comm...
Ted Kremenek
2008-09-05
1
-0
/
+2
*
Change struct forward declarations and definitions to use unique RecordDecls,...
Ted Kremenek
2008-09-05
1
-12
/
+135
*
Remove stale comments.
Ted Kremenek
2008-09-05
1
-8
/
+0
*
Remove "NextDecl" from RecordDecl. This change touches many files that where...
Ted Kremenek
2008-09-05
1
-4
/
+2
*
Set register storage class correctly for function parameters.
Daniel Dunbar
2008-09-03
1
-3
/
+5
*
Fix 80 col violations.
Ted Kremenek
2008-09-03
1
-9
/
+8
*
When creating CXXRecordDecls and RecordDecls within ActOnTag, hook up the new...
Ted Kremenek
2008-09-02
1
-5
/
+15
*
Fix for PR2747: allow pointer->int casts with a null base; these are
Eli Friedman
2008-09-02
1
-0
/
+7
*
Backing out r55607 due to logic errors and test regression.
Eli Friedman
2008-09-01
1
-10
/
+6
*
fix one more this-is-not-a-constant error. test included
Nuno Lopes
2008-09-01
1
-0
/
+3
*
make CheckArithmeticConstantExpression() aware of &foo and pointers
Nuno Lopes
2008-09-01
1
-6
/
+10
*
minor cleanup
Nico Weber
2008-08-29
1
-15
/
+4
*
Move implicit Obj-C param creation into ObjCMethodDecl.
Daniel Dunbar
2008-08-26
1
-15
/
+0
*
Do typechecking and codegen for K&R-style function declarations
Eli Friedman
2008-08-25
1
-8
/
+2
*
Fix for PR2720; be a little bit more permissive in initializers for
Eli Friedman
2008-08-25
1
-21
/
+23
*
Initial sema support for C++ static initializers.
Anders Carlsson
2008-08-22
1
-4
/
+11
*
Rewrite type compatibility testing to do type merging rather than just
Eli Friedman
2008-08-22
1
-1
/
+1
*
Added ObjCAtDefsFieldDecl to represent FieldDecls created by @defs.
Ted Kremenek
2008-08-20
1
-4
/
+14
*
Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastEx...
Argyrios Kyrtzidis
2008-08-18
1
-13
/
+5
*
various updates to match r54873 on mainline.
Chris Lattner
2008-08-17
1
-1
/
+1
*
More #include cleaning
Daniel Dunbar
2008-08-11
1
-10
/
+0
*
More #include cleaning
Daniel Dunbar
2008-08-11
1
-0
/
+1
*
More #include cleaning
Daniel Dunbar
2008-08-11
1
-0
/
+1
*
Cleanup from yesterday...make isTentativeDefinition() a static helper functio...
Steve Naroff
2008-08-10
1
-1
/
+1
*
Sema::CheckForFileScopedRedefinitions(): Make sure tentative decls of incompl...
Steve Naroff
2008-08-10
1
-0
/
+9
*
rename PreDefinedExpr -> PredefinedExpr
Chris Lattner
2008-08-10
1
-1
/
+1
*
Fix Sema::MergeVarDecl() to better handle type compatibility. The previous co...
Steve Naroff
2008-08-09
1
-34
/
+1
*
When in C++, invoke ASTConsumer::HandleTagDeclDefinition in Sema::ActOnFinish...
Argyrios Kyrtzidis
2008-08-09
1
-1
/
+4
*
Fix issues with C "tentative" definitions.
Steve Naroff
2008-08-08
1
-34
/
+46
*
Sema::ActOnEnumBody(): handle nested enum redefinitions.
Steve Naroff
2008-08-07
1
-1
/
+13
*
Implement GNU asm-label extension support in CodeGen. This fixes
Daniel Dunbar
2008-08-06
1
-0
/
+8
*
Move AsmLabel into Declarator instead of just a parameter to
Daniel Dunbar
2008-08-05
1
-4
/
+4
*
Add more Parser/Sema support for GCC asm-label extension.
Daniel Dunbar
2008-08-05
1
-3
/
+11
[next]