- Jan 20, 2009
-
-
Eli Friedman authored
builtins. Also, a minor tweak to va_copy for consistency. llvm-svn: 62574
-
Daniel Dunbar authored
now fully independent of the gcc driver when targetting Darwin/x86. llvm-svn: 62570
-
Daniel Dunbar authored
filename from the input path. llvm-svn: 62569
-
Douglas Gregor authored
Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow llvm-svn: 62568
-
Douglas Gregor authored
llvm-svn: 62567
-
Daniel Dunbar authored
- Clean up some placement of output args to match gcc more precisely (for testing). llvm-svn: 62566
-
Daniel Dunbar authored
llvm-svn: 62565
-
Douglas Gregor authored
that every declaration lives inside a DeclContext. Moved several things that don't have names but were ScopedDecls (and, therefore, NamedDecls) to inherit from Decl rather than NamedDecl, including ObjCImplementationDecl and LinkageSpecDecl. Now, we don't store empty DeclarationNames for these things, nor do we try to insert them into DeclContext's lookup structure. The serialization tests are temporarily disabled. We'll re-enable them once we've sorted out the remaining ownership/serialiazation issues between DeclContexts and TranslationUnion, DeclGroups, etc. llvm-svn: 62562
-
Daniel Dunbar authored
llvm-svn: 62556
-
rdar://problem/6506065Ted Kremenek authored
Dead stores checker: Fix <rdar://problem/6506065> by being more selective when say that a store is dead even though the computed value is used in the enclosing expression. llvm-svn: 62552
-
Daniel Dunbar authored
- Add Darwin_X86_CC1Tool which is shared by Darwin/x86/Compile and Darwin/x86/Preprocess tools. - Minor bug fixes (CmpDriver exit code, -x cpp-output handling, some linker argument translation). llvm-svn: 62551
-
Ted Kremenek authored
PTH: Emitted tokens now consist of 12 bytes that are loaded used 3 32-bit loads. This reduces user time but increases system time because of the slightly larger PTH file. Although there is no performance win on Cocoa.h and -Eonly, overall this seems like a good step. llvm-svn: 62542
-
- Jan 19, 2009
-
-
Steve Naroff authored
The QualType smart pointer assumes we have 3 flag bits available. llvm-svn: 62540
-
Sebastian Redl authored
llvm-svn: 62537
-
Sebastian Redl authored
llvm-svn: 62532
-
Ted Kremenek authored
llvm-svn: 62531
-
Ted Kremenek authored
llvm-svn: 62530
-
Fariborz Jahanian authored
that rules for assignment. llvm-svn: 62524
-
Daniel Dunbar authored
llvm-svn: 62523
-
Douglas Gregor authored
new DiagnoseIncompleteType. It provides additional information about struct/class/union/enum types when possible, either by pointing to the forward declaration of that type or by pointing to the definition (if we're in the process of defining that type). Fixes <rdar://problem/6500531>. llvm-svn: 62521
-
Daniel Dunbar authored
llvm-svn: 62520
-
Daniel Dunbar authored
- This doesn't follow normal installation procedure of python code, but no sense trying too hard since ccc will be moved to C++. - Entry point is now tools/ccc. llvm-svn: 62517
-
Fariborz Jahanian authored
with @synthesize being illegal. llvm-svn: 62515
-
Chris Lattner authored
SourceManager::getFileCharacteristic(FileID) method: we need a full location to know if it is a system header etc in the future. llvm-svn: 62503
-
Chris Lattner authored
safe because a #line can change the file characteristic on a per-loc basis. llvm-svn: 62502
-
Chris Lattner authored
safe because a #line can change the file characteristic on a per-loc basis. llvm-svn: 62501
-
Chris Lattner authored
no longer such thing as a non-canonical FileID. llvm-svn: 62499
-
Ted Kremenek authored
Run destructors of MacroInfo objects to free memory they allocate. This addresses <rdar://problem/6506035>. llvm-svn: 62498
-
Chris Lattner authored
llvm-svn: 62497
-
Chris Lattner authored
llvm-svn: 62496
-
Chris Lattner authored
llvm-svn: 62495
-
Chris Lattner authored
SourceManager::getBuffer(SourceLocation) method. llvm-svn: 62494
-
Chris Lattner authored
llvm-svn: 62493
-
Chris Lattner authored
llvm-svn: 62492
-
Chris Lattner authored
llvm-svn: 62491
-
Chris Lattner authored
SourceLocation. This requires making some cleanups to token pasting and _Pragma expansion. llvm-svn: 62490
-
Douglas Gregor authored
llvm-svn: 62489
-
Sebastian Redl authored
Fix type of logical negation for C++. llvm-svn: 62475
-
- Jan 18, 2009
-
-
Daniel Dunbar authored
should. This needs cleanup. llvm-svn: 62473
-
-