| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
llvm-svn: 166353
|
| |
|
|
| |
llvm-svn: 166348
|
| |
|
|
| |
llvm-svn: 166347
|
| |
|
|
| |
llvm-svn: 166345
|
| |
|
|
| |
llvm-svn: 166317
|
| |
|
|
| |
llvm-svn: 166312
|
| |
|
|
|
|
| |
Grzegorz Jablonski.
llvm-svn: 166311
|
| |
|
|
| |
llvm-svn: 166310
|
| |
|
|
| |
llvm-svn: 166304
|
| |
|
|
|
|
| |
- Also, lit is going to get a valgrind feature, instead.
llvm-svn: 166301
|
| |
|
|
|
|
|
|
| |
- We create two TargetLoweringInfo instances for different pass managers, and
they weren't consistent (the one for codegen didn't have the right info). I'm
not sure this mattered anywhere in practice.
llvm-svn: 166299
|
| |
|
|
| |
llvm-svn: 166298
|
| |
|
|
|
|
| |
Suggestion from Matt Beaumont-Gay reviewing r165283.
llvm-svn: 166296
|
| |
|
|
| |
llvm-svn: 166293
|
| |
|
|
| |
llvm-svn: 166287
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Also, unify ObjCShouldCallSuperDealloc and ObjCShouldCallSuperFinalize.
The two have identical behavior and will never be active at the same time.
There's one last simplification now, which is that if we see a call to
[super foo] and we are currently in a method named 'foo', we will
/unconditionally/ clear the ObjCShouldCallSuper flag, rather than check
first to see if we're in a method where calling super is required. There's
no reason to pay the extra lookup price here.
llvm-svn: 166285
|
| |
|
|
|
|
|
|
|
|
| |
"expected-*" directive. As a result, for test-cases that are not expected to generate any diagnostics, an additional directive "expected-no-diagnostics" has been implemented which can then be included in such test-cases. This new directive may not be used in conjunction with any other "expected-*" directive.
This change was initially proposed as a solution to the problem highlighted by check-in r164677, i.e. that -verify will not cause a test-case failure where the compile command does not actually reference the file.
Patch reviewed by David Blaikie.
llvm-svn: 166281
|
| |
|
|
|
|
| |
VerifyDiagnosticConsumer, make the necessary adjustment to 580 test-cases which will henceforth require this new directive.
llvm-svn: 166280
|
| |
|
|
|
|
|
|
| |
"expected" is at the start of the word and will no longer accept typos such as "junkexpected-*" as a valid "expected-*" directive. A very few test-cases had to be amended to adhere to the new rule.
Patch reviewed by David Blaikie.
llvm-svn: 166279
|
| |
|
|
|
|
| |
Richard has an unreduced testcase to work with.
llvm-svn: 166272
|
| |
|
|
|
|
| |
support for i386 Linux
llvm-svn: 166271
|
| |
|
|
|
|
| |
const non-volatile global does.
llvm-svn: 166269
|
| |
|
|
|
|
| |
class, diagnose if the qualified-id instantiates to a non-static class member.
llvm-svn: 166268
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
constructors.
When I first moved regparm support to TargetInfo.cpp I tried to isolate it
in classifyArgumentTypeWithReg, but it is actually a lot easier to flip the
code around and check for regparm at the end of the decision tree.
Without this refactoring classifyArgumentTypeWithReg would have to duplicate
the logic about when to use non-byval indirect arguments.
llvm-svn: 166266
|
| |
|
|
|
|
| |
its on the same line as the last call to getLineNumber. Prevents needing to scan backwards for the new line. Fixes PR14106.
llvm-svn: 166265
|
| |
|
|
| |
llvm-svn: 166263
|
| |
|
|
|
|
|
|
| |
to -fms-compatibility. Then XFAIL can be removed.
FYI, it can be reproduced with "c-index-test -std=c++11 -fms-compatibility".
llvm-svn: 166261
|
| |
|
|
| |
llvm-svn: 166257
|
| |
|
|
| |
llvm-svn: 166254
|
| |
|
|
| |
llvm-svn: 166253
|
| |
|
|
| |
llvm-svn: 166252
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
block, so the input files are validated early on, before we've
committed to loading the AST file. This (accidentally) fixed a but
wherein the main file used to generate the AST file would *not* be
validated by the existing validation logic.
At the moment, this leads to some duplication of filenames between the
source manager block and input-file blocks, as well as validation
logic. This will be handled via an upcoming patch.
llvm-svn: 166251
|
| |
|
|
|
|
| |
Investigating.
llvm-svn: 166250
|
| |
|
|
|
|
| |
This seems to have introduced assertion hit when building compiler-rt.
llvm-svn: 166245
|
| |
|
|
| |
llvm-svn: 166240
|
| |
|
|
|
|
| |
Grzegorz Jablonski.
llvm-svn: 166237
|
| |
|
|
|
|
|
|
|
|
| |
are no known current users of column info. Robustify and fix up
a few tests in the process. Reduces the size of debug information
by a small amount.
Part of PR14106
llvm-svn: 166236
|
| |
|
|
| |
llvm-svn: 166235
|
| |
|
|
| |
llvm-svn: 166233
|
| |
|
|
|
|
|
| |
for current(rewritten) comment and getParamNameAsWritten
to access param name coming with \param marker.
llvm-svn: 166231
|
| |
|
|
| |
llvm-svn: 166230
|
| |
|
|
| |
llvm-svn: 166229
|
| |
|
|
|
|
| |
module files.
llvm-svn: 166228
|
| |
|
|
|
|
| |
printing. Patch by Benoit Perrot.
llvm-svn: 166227
|
| |
|
|
|
|
|
|
| |
with default values.
Based on patch by Grzegorz Jablonski.
llvm-svn: 166226
|
| |
|
|
| |
llvm-svn: 166223
|
| |
|
|
|
|
| |
which will be used by the asm matcher in the near future.
llvm-svn: 166221
|
| |
|
|
|
|
|
|
|
|
|
| |
source locations in places where it is necessary for diagnostics. By itself,
this causes assertions, so while I'm here, also fix property synthesis
for properties of C++ class type so we use so we properly set up a scope
and mark variable declarations.
<rdar://problem/12514189>.
llvm-svn: 166219
|
| |
|
|
|
|
|
|
| |
diffs.
char-by-char is really slow on an unbuffered stream.
llvm-svn: 166218
|
| |
|
|
|
|
|
| |
*NamedDecl. In turn, build the expressions after we're finished parsing the
asm. This avoids a crasher if the lookup fails.
llvm-svn: 166213
|