| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
| |
support as far as I know.
llvm-svn: 58217
|
|
|
|
|
|
| |
objc mode.
llvm-svn: 58216
|
|
|
|
|
|
|
|
|
|
|
| |
struct foo Y[10] = {
[4] .arr [2] 4 // expected-error {{expected '=' or another designator}}
};
because the "missing equals" extension only is valid if there
is exactly one array designator.
llvm-svn: 58215
|
|
|
|
|
|
| |
fix an obscure memory leak.
llvm-svn: 58213
|
|
|
|
|
|
| |
improve diagnostic for a malformed field designator.
llvm-svn: 58212
|
|
|
|
|
|
| |
easier to understand and hack on, no functionality change.
llvm-svn: 58210
|
|
|
|
|
|
| |
about whether a leading identifier is a designator.
llvm-svn: 58207
|
|
|
|
|
|
|
| |
initializer, avoiding an extra level of calls for silly things like
'int x = 4'.
llvm-svn: 58206
|
|
|
|
|
|
|
|
|
|
|
| |
1. It introduces new parser level abstractions for designators
that are used to communicate between parser and sema.
2. This fixes a FIXME where "identifier ':'" was considered to be
a designator even if it wasn't the first in a designator list.
3. In the "identifier ':'" case, it actually builds the designator
representation.
llvm-svn: 58205
|
|
|
|
| |
llvm-svn: 58203
|
|
|
|
|
|
|
|
|
| |
(by Preprocessor::LookNext):
-Remove ParseExpressionWithLeadingIdentifier and ParseAssignmentExprWithLeadingIdentifier.
-Separate ParseLabeledStatement from ParseIdentifierStatement.
llvm-svn: 53376
|
|
|
|
|
|
| |
objc message send in an initializer expression.
llvm-svn: 51882
|
|
|
|
|
|
|
|
| |
1. If we hit a semantic error, try harder to recover to emit
diagnostics for later initializer errors (PR2241).
2. Don't leak parsed initializers on an error.
llvm-svn: 49998
|
|
lib dir and move all the libraries into it. This follows the main
llvm tree, and allows the libraries to be built in parallel. The
top level now enforces that all the libs are built before Driver,
but we don't care what order the libs are built in. This speeds
up parallel builds, particularly incremental ones.
llvm-svn: 48402
|