- Sep 24, 2010
-
-
Fariborz Jahanian authored
vla. Implements pr7827. llvm-svn: 114737
-
Douglas Gregor authored
llvm-svn: 114735
-
Ted Kremenek authored
Remove this test for now until I figure out how to get it to work with c-index-test in a portable way. llvm-svn: 114721
-
Ted Kremenek authored
llvm-svn: 114720
-
Ted Kremenek authored
Since this test depends on default ivar synthesis, specify the target triple. This hopefully unbreaks the buildbot on some archs. llvm-svn: 114716
-
Ted Kremenek authored
llvm-svn: 114715
-
Ted Kremenek authored
Default synthesized ivars don't really have a location in the source. Using the location of the @implementation is just confusing for clients that want to use SourceLocations for syntactic references. Fixes: <rdar://problem/8470540> llvm-svn: 114714
-
Nick Lewycky authored
llvm-svn: 114713
-
Nick Lewycky authored
llvm-svn: 114712
-
Nick Lewycky authored
llvm-svn: 114711
-
Douglas Gregor authored
provided when the optimization is disabled. In particular, split the completion context CCC_Other into two contexts: CCC_Other, which means that it's an undisclosed context for which any other results are unwelcome, and CCC_Recovery, which is used in recovery cases. Since we're now using the completion context within the completion results builder, make sure that it's always set to something. Fixes <rdar://problem/8470644>. llvm-svn: 114704
-
- Sep 23, 2010
-
-
Nick Lewycky authored
llvm-svn: 114697
-
Ted Kremenek authored
When warning about comparing an unsigned int to being >= 0, don't issue a warning if the zero value was an enum or was expanded from a macro. Fixes: <rdar://problem/8414119> llvm-svn: 114695
-
Ted Kremenek authored
Add test case for c-index-test showing that @property declarations added in class extensions don't get reported in the @interface. llvm-svn: 114694
-
Ted Kremenek authored
as the lexical DeclContext for the @property declaration that gets auto-created for the @interface. Fixes: <rdar://problem/8467189> llvm-svn: 114693
-
Douglas Gregor authored
llvm-svn: 114682
-
Argyrios Kyrtzidis authored
members with the same name as a decl outside the scope where the members are actually introduced. Fixes http://llvm.org/PR6741 llvm-svn: 114641
-
Argyrios Kyrtzidis authored
If -fcolor-diagnostics is explicitly passed to the driver respect that even if the driver is of the opinion that stderr can't handle them. (see http://llvm.org/PR8150) Patch by Frits van Bommel! llvm-svn: 114638
-
Argyrios Kyrtzidis authored
llvm-svn: 114637
-
Argyrios Kyrtzidis authored
llvm-svn: 114636
-
Ted Kremenek authored
Refactor GRExprEngine::VisitCall() to use EvalArguments(), just like VisitCXXMemberCallExpr(). Ideally we should unify these code paths as much as possible, since they only differ by a few details. llvm-svn: 114628
-
Daniel Dunbar authored
llvm-svn: 114627
-
Daniel Dunbar authored
llvm-svn: 114619
-
Daniel Dunbar authored
- Therefore, we can lower out the NEON wrapper structs and pass the vectors directly. This makes a huge difference in the cleanliness of the IR after optimization. - I will trust, but verify, via future ABITest testing (for APCS-GNU, at least). llvm-svn: 114618
-
Ted Kremenek authored
llvm-svn: 114615
-
- Sep 22, 2010
-
-
Douglas Gregor authored
semantic parents of the given cursor. llvm-svn: 114587
-
Devang Patel authored
llvm-svn: 114586
-
Tom Care authored
llvm-svn: 114581
-
Sebastian Redl authored
llvm-svn: 114575
-
Douglas Gregor authored
Fix a hard-to-reproduce crash-on-invalid, where we weren't checking for a valid result from ActOnIdExpression llvm-svn: 114548
-
Argyrios Kyrtzidis authored
-Wpadded warns when undesired padding is introduced in a struct. (rdar://7469556) -Wpacked warns if a struct is given the packed attribute, but the packed attribute has no effect on the layout or the size of the struct. Such structs may be mis-aligned for little benefit. The warnings are emitted at the point where layout is calculated, that is at RecordLayoutBuilder. To avoid calculating the layouts of all structs regardless of whether they are needed or not, I let the layouts be lazily constructed when needed. This has the disadvantage that the above warnings will be emitted only when they are used for IR gen, and not e.g with -fsyntax-only: $ cat t.c struct S { char c; int i; }; void f(struct S* s) {} $ clang -fsyntax-only -Wpadded t.c $ clang -c -Wpadded t.c -o t.o t.c:3:7: warning: padding struct 'struct S' with 3 bytes to align 'i' [-Wpadded] int i; ^ 1 warning generated. This is a good tradeoff between providing the warnings and not calculating layouts for all structs in case the user has enabled a couple of rarely used warnings. llvm-svn: 114544
-
Chris Lattner authored
llvm-svn: 114535
-
Sebastian Redl authored
llvm-svn: 114518
-
Sebastian Redl authored
llvm-svn: 114517
-
Daniel Dunbar authored
some projects still depend on ___eprintf being available. llvm-svn: 114509
-
-
Chris Lattner authored
llvm-svn: 114502
-
Chris Lattner authored
llvm-svn: 114498
-
Chris Lattner authored
llvm-svn: 114497
-
Fariborz Jahanian authored
a vla type (fixes pr7827). llvm-svn: 114495
-