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
/
SemaDeclAttr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Allow __attribute__((unused)) for fields and make it silence
Daniel Jasper
2012-06-13
1
-1
/
+1
*
Revert Decl's iterators back to pointer value_type rather than reference valu...
David Blaikie
2012-06-06
1
-1
/
+1
*
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-06-02
1
-1
/
+1
*
objc: properties of NSObject attribute must
Fariborz Jahanian
2012-05-31
1
-1
/
+9
*
-Wdeprecated warning to include reference (as a note)
Fariborz Jahanian
2012-05-27
1
-1
/
+5
*
implement Sema support for the alloc_size attribute
Nuno Lopes
2012-05-24
1
-0
/
+76
*
Recognize the MS inheritance attributes and turn them into attributes
John McCall
2012-05-22
1
-1
/
+47
*
StringSwitchify. No functionality change.
Benjamin Kramer
2012-05-16
1
-20
/
+13
*
Factor sema for attributes unavailable and deprecated into a common function.
Benjamin Kramer
2012-05-16
1
-28
/
+13
*
Refactor all the
Rafael Espindola
2012-05-13
1
-56
/
+47
*
Produce a warning for mismatched section attributes. Completest pr9356.
Rafael Espindola
2012-05-13
1
-3
/
+17
*
Add support for __attribute__((hot)) and __attribute__((cold)).
Benjamin Kramer
2012-05-12
1
-0
/
+42
*
Remove unused variable. Thanks to Dmitri Gribenko for noticing it.
Rafael Espindola
2012-05-12
1
-2
/
+0
*
Teach the parser to deal with multiple spellings for the same
Douglas Gregor
2012-05-11
1
-1
/
+0
*
Make sure that we recognize __attribute__((align)) as a synonym for
Douglas Gregor
2012-05-11
1
-0
/
+1
*
Fix a recent regression with the merging of format attributes.
Rafael Espindola
2012-05-11
1
-20
/
+27
*
Warn about visibility attributes in typedefs.
Rafael Espindola
2012-05-10
1
-0
/
+4
*
Fix an old (2009) FIXME:
Rafael Espindola
2012-05-10
1
-87
/
+111
*
Clean up SemaDeclAttr for high-warnings build.
Jordy Rose
2012-05-08
1
-8
/
+8
*
Add missing 'y'.
Rafael Espindola
2012-05-08
1
-1
/
+1
*
Process attributes in the order they appear in the source code. This make clang
Rafael Espindola
2012-05-07
1
-1
/
+5
*
Change how we suppress access control in explicit instantiations
John McCall
2012-05-07
1
-4
/
+12
*
Refactor DelayedDiagnostics so that it keeps diagnostics in
John McCall
2012-05-07
1
-61
/
+28
*
Split mergeAvailabilityAttr out of handleAvailabilityAttr. This is important
Rafael Espindola
2012-05-06
1
-40
/
+119
*
Move Sema::VerifyIntegerConstantExpression() and
Douglas Gregor
2012-05-04
1
-4
/
+4
*
Thread safety analysis: check for LOCKABLE attribute on base classes.
DeLesley Hutchins
2012-05-04
1
-4
/
+23
*
Thread safety analysis: additional support for smart pointers in lock express...
DeLesley Hutchins
2012-05-02
1
-16
/
+28
*
Walk the decls looking for the last one that has an attribute. We do have to ...
Rafael Espindola
2012-05-02
1
-6
/
+9
*
Thread Safety Analysis: fixed attribute handling for lock_returned attribute.
DeLesley Hutchins
2012-05-02
1
-2
/
+7
*
Extend the error about incompatible visibility attributes in different
Rafael Espindola
2012-05-01
1
-1
/
+7
*
Remove the ref/value inconsistency in filter_decl_iterator.
David Blaikie
2012-04-30
1
-1
/
+1
*
Reject cases like
Rafael Espindola
2012-04-26
1
-0
/
+9
*
with -Wdeprecated, include a note to its deprecated declaration
Fariborz Jahanian
2012-04-23
1
-1
/
+5
*
Thread safety analysis: support the use of pt_guarded_by attributes
DeLesley Hutchins
2012-04-23
1
-0
/
+22
*
Thread-safety analysis: support new "pointer to member" syntax for
DeLesley Hutchins
2012-04-23
1
-1
/
+13
*
Remove unneeded code.
Fariborz Jahanian
2012-04-21
1
-1
/
+1
*
objective-c arc: With currnt documentation,
Fariborz Jahanian
2012-04-20
1
-2
/
+2
*
Thread safety analysis: split warnings into two groups: attribute warnings
DeLesley Hutchins
2012-04-19
1
-48
/
+46
*
Thread safety analysis: downgraded requirement that mutex expressions refer t...
DeLesley Hutchins
2012-04-06
1
-21
/
+17
*
Added a new attribute, objc_root_class, which informs the compiler when a roo...
Patrick Beard
2012-04-06
1
-0
/
+19
*
Minor cleanup in attribute-related diagnostics, from Alexander Kornienko!
Douglas Gregor
2012-03-14
1
-14
/
+11
*
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-11
1
-4
/
+4
*
Refactor Clang sema attribute handling.
Michael Han
2012-03-07
1
-7
/
+7
*
objc: When issue diagnostic about deprecated method, also
Fariborz Jahanian
2012-03-02
1
-1
/
+8
*
Fix regression from llvm-gcc where we should NOT emit a warning about __attri...
Ted Kremenek
2012-03-01
1
-1
/
+8
*
Turned on support for __declspecs: noreturn, noinline, nothrow and naked in M...
Aaron Ballman
2012-02-23
1
-4
/
+13
*
Turned on support for __declspec(deprecated) in MS compatibility mode.
Aaron Ballman
2012-02-23
1
-1
/
+2
*
Thread safety analysis: Don't check for lockable on undefined types.
DeLesley Hutchins
2012-02-16
1
-0
/
+3
*
In C++11 mode, when an integral constant expression is desired and we have a
Richard Smith
2012-02-04
1
-5
/
+6
*
Split Sema::MarkDeclarationReferenced into multiple functions; the additional...
Eli Friedman
2012-02-02
1
-1
/
+1
[next]