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
*
err_attribute_missing_parameter_name has been replaced by err_attribute_argum...
Aaron Ballman
2013-07-30
1
-1
/
+2
*
Replacing err_attribute_argument_not_int with err_attribute_not_type_attr
Aaron Ballman
2013-07-30
1
-10
/
+15
*
err_attribute_not_string has been subsumed by err_attribute_argument_type.
Aaron Ballman
2013-07-30
1
-39
/
+33
*
Refactor some attributes to use checkFunctionOrMethodArgumentIndex instead of...
Aaron Ballman
2013-07-30
1
-159
/
+46
*
Support for Thread Safety Analysis in C
David Blaikie
2013-07-29
1
-1
/
+1
*
Added the attribute name to the err_attribute_wrong_number_arguments diagnost...
Aaron Ballman
2013-07-23
1
-26
/
+50
*
Going back to using getName for consistency.
Aaron Ballman
2013-07-23
1
-7
/
+2
*
Replacing some manual diagnostic checks with an existing helper method. Addi...
Aaron Ballman
2013-07-23
1
-12
/
+3
*
Consolidate several attribute argument diagnostics into a single, selectable ...
Aaron Ballman
2013-07-23
1
-44
/
+68
*
Correcting the NSObject and Overloadable attribute diagnostics so that the co...
Aaron Ballman
2013-07-23
1
-6
/
+2
*
add type attribute warn_unused, for -Wunused-variable warnings (pr#14253)
Lubos Lunak
2013-07-20
1
-0
/
+14
*
Switching to use checkAttributeNumArgs for trivial cases. No functional chan...
Aaron Ballman
2013-07-18
1
-10
/
+4
*
Replacing a morally duplicate diagnostic by adding it to an existing diagnost...
Aaron Ballman
2013-07-18
1
-3
/
+6
*
Removed a parameter from handleAttrWithMessage to make it more consistent wit...
Aaron Ballman
2013-07-18
1
-5
/
+5
*
Use SmallVectorImpl& for function arguments instead of SmallVector.
Craig Topper
2013-07-05
1
-4
/
+4
*
Check LongDoubleFormat instead of just Width as this is PowerPC specific.
Roman Divacky
2013-07-03
1
-1
/
+2
*
Add support for TF/TC modes available on eg. PowerPC64.
Roman Divacky
2013-07-03
1
-5
/
+8
*
Don't allow __attribute__((common)) in C++. PR16330.
Eli Friedman
2013-06-20
1
-0
/
+6
*
Improved source code fidelity for gcc mode attribute.
Enea Zaffanella
2013-06-20
1
-4
/
+7
*
Adding in parsing and the start of semantic support for __sptr and __uptr poi...
Aaron Ballman
2013-05-22
1
-12
/
+6
*
Warn on and drop dllimport attrs from variable definitions
Reid Kleckner
2013-05-20
1
-3
/
+2
*
Implement __declspec(selectany) under -fms-extensions
Reid Kleckner
2013-05-20
1
-0
/
+13
*
Thread safety analysis: add two new attributes to the thread safety analysis:
DeLesley Hutchins
2013-05-17
1
-0
/
+34
*
Refactor diagnostics for MS attributes without -fms-extensions
Reid Kleckner
2013-05-17
1
-66
/
+73
*
ArrayRef'ize InitializationSequence constructor and InitializationSequence::D...
Dmitri Gribenko
2013-05-03
1
-2
/
+2
*
Basic support for Microsoft property declarations and
John McCall
2013-04-16
1
-0
/
+1
*
Annotate flavor of TLS variable (statically or dynamically initialized) onto ...
Richard Smith
2013-04-13
1
-2
/
+2
*
Rework how ObjC method inherit deprecated/availability.
Ted Kremenek
2013-04-06
1
-1
/
+4
*
Add 178663 back.
Rafael Espindola
2013-04-03
1
-4
/
+2
*
Revert 178663.
Rafael Espindola
2013-04-03
1
-2
/
+4
*
Don't compute a patched/semantic storage class.
Rafael Espindola
2013-04-03
1
-4
/
+2
*
Generate metadata to implement the -cl-kernel-arg-info option.
Guy Benyei
2013-03-24
1
-1
/
+19
*
Add support for the 'endian' attribute for OpenCL.
Joey Gouly
2013-03-14
1
-0
/
+13
*
Add support for the OpenCL attribute 'vec_type_hint'.
Joey Gouly
2013-03-08
1
-0
/
+33
*
Process #pragma weak only after we know the linkage of the function or variable
Rafael Espindola
2013-03-02
1
-24
/
+24
*
Be more careful in applying pragma weak. Fixes pr14974.
Rafael Espindola
2013-02-26
1
-2
/
+10
*
Unify clang/llvm attributes for asan/tsan/msan (Clang part)
Kostya Serebryany
2013-02-26
1
-9
/
+49
*
Revert r175912, "Add support for coldcc to clang" at John's request.
Peter Collingbourne
2013-02-23
1
-10
/
+0
*
Add support for coldcc to clang
Peter Collingbourne
2013-02-22
1
-0
/
+10
*
Don't crash if we try to apply 'alignas' to a variable declared with an
Richard Smith
2013-02-22
1
-1
/
+1
*
Handle alignas(foo...) pack expansions.
Richard Smith
2013-02-22
1
-19
/
+25
*
Don't crash when applying an alloc_size attribute on a K&R function.
Argyrios Kyrtzidis
2013-02-22
1
-1
/
+5
*
Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out of
Richard Smith
2013-02-22
1
-2
/
+1
*
Add a new 'type_visibility' attribute to allow users to
John McCall
2013-02-20
1
-22
/
+62
*
Replace TypeLoc llvm::cast support to be well-defined.
David Blaikie
2013-02-18
1
-2
/
+2
*
The meat of this patch is in BuildCXXMemberCalLExpr where we make it use
Nick Lewycky
2013-02-12
1
-0
/
+1
*
Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.
Jordan Rose
2013-02-08
1
-1
/
+2
*
Fix diagnostic for bad alignas use: it can't be applied to functions.
Richard Smith
2013-02-01
1
-2
/
+5
*
Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign.
Richard Smith
2013-02-01
1
-37
/
+79
*
[Sema][Attr]Fix alignment attribute printing.
Michael Han
2013-02-01
1
-18
/
+20
[next]