- Sep 22, 2010
-
-
Devang Patel authored
llvm-svn: 114586
-
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
-
-
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
-
- Sep 21, 2010
-
-
Ted Kremenek authored
Correctly register the class extension as the lexical DeclContext for ObjC methods declared with @property in class extensions. This matches the behavior for setters. Also pass the class extension to ProcessPropertyDecl as the lexical DeclContext, even when not redeclaring the @property. This fixes the remaining issues in <rdar://problem/7410145>. llvm-svn: 114477
-
Fariborz Jahanian authored
with missing LHS. radar 8453812. Executable test is checked into llvm test suite. llvm-svn: 114457
-
Ted Kremenek authored
For ObjCPropertyDecls in class extensions, use the class extension as the lexical DeclContext for newly created ObjCMethodDecls. Further, use the location of the new property declaration as the location of new ObjCMethodDecls (if they didn't previously exist). This fixes more of the issues reported in <rdar://problem/7410145>. llvm-svn: 114456
-
Douglas Gregor authored
class template) and are in a context where we can have a value. llvm-svn: 114441
-
Argyrios Kyrtzidis authored
Fixes rdar://8331312. llvm-svn: 114426
-
Douglas Gregor authored
message send, e.g., [[NSString alloc] initWithCString:<CC> look up all of the possible methods and determine the preferred type for the argument expression based on the type of the corresponding parameter. llvm-svn: 114379
-
Fariborz Jahanian authored
complex conditionals. Radar 8453812. llvm-svn: 114376
-
Douglas Gregor authored
at the statement level or in Objective-C message receivers. Therefore, just give types and declarations the same basic priority, and adjust from there. llvm-svn: 114374
-
Nate Begeman authored
llvm-svn: 114371
-
- Sep 20, 2010
-
-
Douglas Gregor authored
statement context; it really isn't helpful in practice (remember printf!) and we'll be doing other adjustments for statements very soon. llvm-svn: 114358
-
Douglas Gregor authored
- In Objective-C, we prefer BOOL to bool for historic reasons; slightly penalize "bool". - Treat Nil macro as a NULL pointer constant. - Treat YES, NO, true, and false macros as constants. - Treat the bool macro as a type. llvm-svn: 114356
-
Douglas Gregor authored
that redundant types don't result in super-long USRs. Fixes <rdar://problem/8447875>. llvm-svn: 114347
-
Douglas Gregor authored
actually resolves to a particular function. Fixes PR8181, from Faisal Vali! llvm-svn: 114331
-
Argyrios Kyrtzidis authored
llvm-svn: 114318
-
- Sep 19, 2010
-
-
-
Argyrios Kyrtzidis authored
llvm-svn: 114315
-
Argyrios Kyrtzidis authored
llvm-svn: 114314
-
- Sep 18, 2010
-
-
Fariborz Jahanian authored
getter expression. Fixes // rdar://8437240 llvm-svn: 114299
-
Fariborz Jahanian authored
LHS and when conditional expression is an array. Since it will be decayed, saved expression must be saved with decayed expression. This is necessary to preserve semantics of this extension (and prevent an IRGen crash which expects an array to always be decayed). I am sure there will be other cases in c++ (aggregate conditionals for example) when saving of the expression must happen after some transformation on conditional expression has happened. Doug, please review. Fixes // rdar://8446940 llvm-svn: 114296
-
Douglas Gregor authored
very rarely used. llvm-svn: 114286
-
John McCall authored
unless we're on a platform without __cxa_atexit (or use thereof has been disabled). This patch actually just disables the check completely for static locals, but I've filed http://llvm.org/bugs/show_bug.cgi?id=8176 to track the platform-specific fix. llvm-svn: 114269
-
Douglas Gregor authored
llvm-svn: 114257
-
Douglas Gregor authored
errors. Improves code completion in yet another case. llvm-svn: 114255
-
John Thompson authored
Added '|' delimiter to separate inline asm multiple alternative constraints for Clang side of support. llvm-svn: 114253
-
John Thompson authored
llvm-svn: 114251
-
John McCall authored
helpful asserts behind. llvm-svn: 114250
-
Bill Wendling authored
llvm-svn: 114247
-
Daniel Dunbar authored
implicit union values for the transparent_union extension. llvm-svn: 114236
-
Douglas Gregor authored
llvm-svn: 114234
-
Douglas Gregor authored
llvm-svn: 114231
-
Douglas Gregor authored
of a binary expression, continue on and parse the right-hand side of the binary expression anyway, but don't call the semantic actions to type-check. Previously, we would see the error and then, effectively, skip tokens until the end of the statement. The result should be more useful recovery, both in the normal case (we'll actually see errors beyond the first one in a statement), but it also helps code completion do a much better job, because we do "real" code completion on the right-hand side of an invalid binary expression rather than completing with the recovery completion. For example, given x = p->y if there is no variable named "x", we can still complete after the p-> as a member expression. Along the recovery path, we would have completed after the "->" as if we were in an expression context, which is mostly useless. llvm-svn: 114225
-
Fariborz Jahanian authored
method definitions instead of crashing in code gen. Fixes radar 8421082. llvm-svn: 114223
-