- Jan 13, 2013
-
-
Michael J. Spencer authored
llvm-svn: 172339
-
Michael J. Spencer authored
llvm-svn: 172338
-
Nico Weber authored
Before: [color getRed: &r green: &g blue: &b alpha: &a]; Now: [color getRed:&r green:&g blue:&b alpha:&a]; llvm-svn: 172337
-
Chandler Carruth authored
case, but looking at the diff this was an obviously unintended change. Thanks for the careful review Bill! =] llvm-svn: 172336
-
Nico Weber authored
llvm-svn: 172335
-
- Jan 12, 2013
-
-
Nico Weber authored
llvm-svn: 172334
-
Nico Weber authored
Before: if ((self = [super initWithContentRect:contentRect styleMask: styleMask backing:NSBackingStoreBuffered defer:YES])) { Now: if ((self = [super initWithContentRect:contentRect styleMask:styleMask backing:NSBackingStoreBuffered defer:YES])) { llvm-svn: 172333
-
Dmitri Gribenko authored
Comment is taken from the commit message of r151080, by Jean-Daniel Dupas llvm-svn: 172332
-
Dmitri Gribenko authored
llvm-svn: 172331
-
Benjamin Kramer authored
llvm-svn: 172330
-
Dmitri Gribenko authored
llvm-svn: 172326
-
Tim Northover authored
llvm-svn: 172325
-
rdar://problem/12986905Bob Wilson authored
As with llvm svn r172138, this patch is basically copying some changes that we've been using for building clang at Apple. Besides cleaning it up to use xcrun to locate the proper versions of tools, especially for cross compiling, it fixes the build to work with newer versions of clang that honor SDKROOT settings in the environment. llvm-svn: 172324
-
Dmitri Gribenko authored
brought into 'clang' namespace by clang/Basic/LLVM.h llvm-svn: 172323
-
Benjamin Kramer authored
Shifting right two times will only yield zero. Should fix SingleSource/UnitTests/SignlessTypes/factor. llvm-svn: 172322
-
Arnaud A. de Grandmaison authored
llvm-svn: 172321
-
Dmitri Gribenko authored
other headers included before them. llvm-svn: 172320
-
NAKAMURA Takumi authored
MipsDisassembler.cpp: Prune DecodeHWRegs64RegisterClass() to suppress a warning. [-Wunused-function] llvm-svn: 172319
-
Benjamin Kramer authored
Found by valgrind. llvm-svn: 172318
-
Rafael Espindola authored
llvm-svn: 172317
-
Rafael Espindola authored
llvm-svn: 172316
-
NAKAMURA Takumi authored
llvm-svn: 172315
-
Rafael Espindola authored
llvm-svn: 172314
-
Benjamin Kramer authored
The folding set details can be subtle and broke twice in the last couple of weeks. llvm-svn: 172313
-
Tim Northover authored
llvm-svn: 172312
-
Jason Molenda authored
llvm-svn: 172311
-
Daniel Jasper authored
llvm-svn: 172308
-
Nico Weber authored
canBreakBefore() does not allow breaking after ':' for LT_ObjCMethodDecl lines, so if Newline is true in addTokenToState() for ':' then LT_ObjCMethodDecl cannot be set. No functionality change. llvm-svn: 172307
-
Nico Weber authored
The containing if checks for this already. No functionality change. llvm-svn: 172306
-
Rafael Espindola authored
The testcase in pr14929 shows that this is extremely hard to do. If we choose to apply the attribute, that causes the visibility of some decls to change and that can happen really late (during codegen). Current gcc warns and ignores the attribute in this testcase with a warning. This suggest that the correct solution is to find a point in the compilation where we can compute the visibility and * assert it was never computed before * reject any attempts to compute it again in the future (with warnings). llvm-svn: 172305
-
Nico Weber authored
This follows the approach suggested by djasper in PR14911: When a '[' is seen that's at the start of a line, follows a binary operator, or follows one of : [ ( return throw, that '[' and its closing ']' are marked as TT_ObjCMethodExpr and every ':' in that range that isn't part of a ternary ?: is marked as TT_ObjCMethodExpr as well. Update the layout routines to not output spaces around ':' tokens that are marked TT_ObjCMethodExpr, and only allow breaking after such tokens, not before. Before: [self adjustButton : closeButton_ ofKind : NSWindowCloseButton]; Now: [self adjustButton:closeButton_ ofKind:NSWindowCloseButton]; llvm-svn: 172304
-
Nico Weber authored
llvm-svn: 172303
-
Nico Weber authored
llvm-svn: 172302
-
Nico Weber authored
llvm-svn: 172301
-
Jason Molenda authored
AddCXXSummary in FormatManager::LoadSystemFormatters(); that function pulls in code that assumes python; can't be used without the ifdef. llvm-svn: 172300
-
Michael Gottesman authored
llvm-svn: 172299
-
Michael Gottesman authored
llvm-svn: 172298
-
Michael J. Spencer authored
This removes a bunch of llvm_unreachables and makes a File's mutability part of the type system. llvm-svn: 172297
-
rdar://problem/13001651Bob Wilson authored
I give up trying to get all of the settings into COMMON_MAKEFLAGS, so just do the easy thing and repeat the ones with interesting quoting issues in each make command. llvm-svn: 172296
-
NAKAMURA Takumi authored
llvm-svn: 172295
-