- Oct 04, 2012
-
-
Lang Hames authored
llvm-svn: 165196
-
Eli Friedman authored
mess by handling all pragmas which the parser touches uniformly. <rdar://problem/12248901>, etc. llvm-svn: 165195
-
Bill Wendling authored
file name if building Apple-style. llvm-svn: 165184
-
Fariborz Jahanian authored
llvm-svn: 165177
-
Chad Rosier authored
llvm-svn: 165175
-
- Oct 03, 2012
-
-
Sean Silva authored
llvm-svn: 165167
-
Bill Wendling authored
llvm-svn: 165162
-
Argyrios Kyrtzidis authored
llvm-svn: 165161
-
Argyrios Kyrtzidis authored
imports via ImportDecls. llvm-svn: 165160
-
Richard Smith authored
llvm-svn: 165158
-
Benjamin Kramer authored
Str may be smaller than Start->Name here. Use strncmp to avoid scanning past the end. Found by valgrind. llvm-svn: 165157
-
Benjamin Kramer authored
false is used as a baseline here, we may want to allow contraction in some of the cases. Found by valgrind. llvm-svn: 165156
-
Michael J. Spencer authored
llvm-svn: 165150
-
Simon Atanasyan authored
This parameter is useless because nowhere used explicitly and always gets its default value - "false". The patch reviewed by Rafael Espindola. llvm-svn: 165149
-
Bill Schmidt authored
Most of the pieces for this were already in place, but a proper EmitVAArg is needed for aggregates and complex numbers to be handled. Although the va_list for 64-bit PowerPC SVR4 consists of GPRs 3 through 10 together with the overflow portion of the parameter save area, we can treat va_list as pointing to contiguous memory for all parameters, since the back end forces the parameter GPRs to memory for varargs functions. There is no need at this time to model parameters and return values beyond what the DefaultABIInfo provides. llvm-svn: 165143
-
Fariborz Jahanian authored
llvm-svn: 165142
-
Douglas Gregor authored
which is neither correct nor necessary. The use of this routine was eliminated by r165137. llvm-svn: 165139
-
Douglas Gregor authored
llvm-svn: 165138
-
Douglas Gregor authored
the ASTReader doesn't attach a body to a function that is already defined elsewhere. llvm-svn: 165137
-
Fariborz Jahanian authored
that doesn't have a 'self' as this implicitly captures 'self' and could create retain cycles. Provide fixit. // rdar://11194874 llvm-svn: 165133
-
Simon Atanasyan authored
1. Add mipsel-linux-android to the list of valid MIPS target triples. 2. Add <gcc install path>/mips-r2 to the list of toolchain specific path prefixes if target is mipsel-linux-android. The patch reviewed by Logan Chien. llvm-svn: 165131
-
Preston Gurd authored
and by specifying a target. llvm-svn: 165130
-
Preston Gurd authored
fast div/rem instruction (for Intel Atom). Test case for llvm commit 165126. Patch by Tyler Nowicki. llvm-svn: 165129
-
Jordan Rose authored
...and fix the run line so that the expected warnings are the same on all platforms. This reverts r165088 / d09074f0ca06626914108f1c0d4e70adeb851e01. llvm-svn: 165124
-
Benjamin Kramer authored
llvm-svn: 165119
-
Benjamin Kramer authored
llvm-svn: 165118
-
Benjamin Kramer authored
Part of PR14005. llvm-svn: 165117
-
Nico Weber authored
Currently, it's ignored if the number of set bits isn't divisible by 4. llvm-svn: 165116
-
Daniel Jasper authored
http://clang.llvm.org/docs/ClangTools.html, this adds -fixit option to clang-check. Thus, clang-check can become a general-purpose tool to run clang capitalizing on the info stored in a compilation database. Review: http://llvm-reviews.chandlerc.com/D51 llvm-svn: 165110
-
Logan Chien authored
llvm-svn: 165105
-
Dmitri Gribenko authored
regex for version tuples. llvm-svn: 165104
-
Bill Wendling authored
can't have the logic here to add in the 'tools/{driver,libclang}' directories, because they will be added in for ALL Makefiles which #include the top-level one. Place the logic into the 'tools' Makefile. llvm-svn: 165103
-
Bill Wendling authored
llvm-svn: 165098
-
Alexey Samsonov authored
llvm-svn: 165097
-
Nico Weber authored
* nullptr used to be mapped to ERROR, now mapped to nullptr * integral was missing * expressions now have their own error message, so they won't reach this. Map them to ERROR. Note that clang usually crashes before emitting this diagnostic anyway (see PR13984), so this change alone doesn't have an observable effect. It makes the code more correct though. llvm-svn: 165095
-
Nico Weber authored
This matches what's done in ItaniumMangle and makes it a bit easier to implement mangling for more expressions. Also use the slightly nicer "not yet implemented" error message from there. No functionality change (except for the different error message). llvm-svn: 165093
-
Nico Weber authored
llvm-svn: 165091
-
John McCall authored
llvm-svn: 165090
-
NAKAMURA Takumi authored
InlineObjCInstanceMethod.m: Remove lines introduced in r165079. It broke some builds, on FreeBSD, Linux and Windows. error: 'warning' diagnostics expected but not seen: Line 94: types are incompatible 1 error generated. llvm-svn: 165088
-
Argyrios Kyrtzidis authored
ImportDecl's module ID was not written out and the reader accepted as module ID the serialized: Record.push_back(!IdentifierLocs.empty()); llvm-svn: 165087
-