index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
AST
/
TypePrinter.cpp
Age
Commit message (
Expand
)
Author
2010-09-05
"const id<NSFoo> *" instead of "id<NSFoo> const *".
Chris Lattner
2010-09-05
"const id<NSFoo> *" not "id<NSFoo> const*"
Chris Lattner
2010-09-05
"const std::vector<int>*" not "std::vector<int> const*"
Chris Lattner
2010-09-05
"const _Complex float *" not "_Complex float const *"
Chris Lattner
2010-09-05
'const std::type_info*' instead of 'std::type_info const*'
Chris Lattner
2010-09-05
print "const intptr_t" instead of "intptr_t const"
Chris Lattner
2010-09-05
make clang print types as "const int *" instead of "int const*",
Chris Lattner
2010-09-04
revert this, it isn't safe.
Chris Lattner
2010-09-04
tidy up
Chris Lattner
2010-09-03
Add symantic support for the Pascal calling convention via
Dawn Perchik
2010-08-28
improve comment, patch by Vladimir Kirillov!
Chris Lattner
2010-07-26
It's not necessary to call flush() on a raw_ostream immediately prior
Dan Gohman
2010-06-23
improve altivec vector bool/pixel support, patch by Anton Yartsev
Chris Lattner
2010-06-16
Revert r106099; it broke self-host.
Douglas Gregor
2010-06-16
Added TemplateTypeParmType::getDecl().
Abramo Bagnara
2010-06-11
Split DependentNameType into two types. DependentNameType represents the
John McCall
2010-05-28
Only provide a source location for an anonymous tag if the location is valid
Douglas Gregor
2010-05-18
Add support for Microsoft's __thiscall, from Steven Watanabe!
Douglas Gregor
2010-05-15
Substantially alter the design of the Objective C type AST by introducing
John McCall
2010-05-11
Merged Elaborated and QualifiedName types.
Abramo Bagnara
2010-04-27
Removed spaces at end of line. (Test commit.)
Abramo Bagnara
2010-04-27
Make the InjectedClassNameType the canonical type of the current instantiation
John McCall
2010-04-05
Extend the type printing policy to allow one to turn off the printing
Douglas Gregor
2010-03-31
Extend DependentNameType with a keyword enum that specifies whether
Douglas Gregor
2010-03-31
Rename TypenameType to DependentNameType in anticipation of some
Douglas Gregor
2010-03-30
Remember the regparm attribute in FunctionType::ExtInfo.
Rafael Espindola
2010-03-30
the big refactoring bits of PR3782.
Rafael Espindola
2010-03-19
Pretty-print anonymous types using their kind and presumed location.
John McCall
2010-03-10
Suppress the tag when printing an ElaboratedType if the language options
John McCall
2010-03-10
When pretty-printing tag types, only print the tag if we're in C (and
John McCall
2010-03-10
Create a new InjectedClassNameType to represent bare-word references to the
John McCall
2010-02-05
First stage of adding AltiVec support
John Thompson
2010-02-04
Allow calling convention attributes to apply to types. Patch by Chip Davis!
John McCall
2010-01-11
Implement name lookup for conversion function template specializations
Douglas Gregor
2009-12-29
Get rid of FixedWidthIntType, as suggested by Chris and Eli.
Anders Carlsson
2009-12-08
Implement template instantiation for exception specifications. Also,
Douglas Gregor
2009-12-04
Fix "using typename" and the instantiation of non-dependent using declarations.
John McCall
2009-12-04
Fix for PR5650 - Revised vector_size attribute handling to be done earlier be...
John Thompson
2009-12-03
Kill a few more random stderr uses.
Daniel Dunbar
2009-11-23
Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations...
John McCall
2009-11-21
This patch implements objective-c's 'SEL' type as a built-in
Fariborz Jahanian
2009-11-16
First part of changes to eliminate problems with cv-qualifiers and
Douglas Gregor
2009-11-12
When comparing template parameter lists, distinguish between three cases:
Douglas Gregor
2009-11-11
Introduce a new representation for template template
Douglas Gregor
2009-11-10
Move all of the type-printing logic to its own C++ source file
Douglas Gregor