| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Do not treat **instance** methods "copyWithZone:" and "mutableCopyWithZone:" ↵ | Ted Kremenek | 2008-05-07 | 1 | -18/+1 |
| | | | | | | | from NSObject as allocators. llvm-svn: 50802 | ||||
| * | Diagnose attempts to use C++ default arguments outside of a function declaration | Douglas Gregor | 2008-05-07 | 6 | -9/+57 |
| | | | | | llvm-svn: 50799 | ||||
| * | Be less promiscuous with generating summaries for "new", "copy", "create". | Ted Kremenek | 2008-05-07 | 1 | -3/+3 |
| | | | | | llvm-svn: 50798 | ||||
| * | Added auto-summary generation for createXXX, copyXXX, newXXX methods. | Ted Kremenek | 2008-05-07 | 1 | -16/+12 |
| | | | | | llvm-svn: 50795 | ||||
| * | Yet another nasty spiller bug. | Evan Cheng | 2008-05-07 | 2 | -14/+56 |
| | | | | | | | | | | | %ecx = op store %cl<kill>, (addr) (addr) = op %al It's not safe to unfold the last operand and eliminate store even though %cl is marked kill. It's a sub-register use which means one of its super-register(s) may be used below. llvm-svn: 50794 | ||||
| * | Fix a bug in the ComputeMaskedBits logic for multiply. | Dan Gohman | 2008-05-07 | 3 | -4/+14 |
| | | | | | llvm-svn: 50793 | ||||
| * | Fix <rdar://problem/5908598> clang ObjC rewriter: typo in #pragma at end | Steve Naroff | 2008-05-07 | 1 | -1/+1 |
| | | | | | llvm-svn: 50790 | ||||
| * | Make the use of the "noinline" attribute conditional on using GCC. | Bill Wendling | 2008-05-07 | 1 | -0/+4 |
| | | | | | llvm-svn: 50789 | ||||
| * | Disable loop deletion until the release branch. | Owen Anderson | 2008-05-06 | 1 | -1/+0 |
| | | | | | llvm-svn: 50787 | ||||
| * | Removing. | Bill Wendling | 2008-05-06 | 1 | -25/+0 |
| | | | | | llvm-svn: 50786 | ||||
| * | Fix a few glitches in scan-build with automatically generating class names ↵ | Ted Kremenek | 2008-05-06 | 1 | -4/+3 |
| | | | | | | | from bug types. llvm-svn: 50784 | ||||
| * | Improve HTMLDiagnostics by understanding the "Below" hint. | Ted Kremenek | 2008-05-06 | 1 | -7/+30 |
| | | | | | llvm-svn: 50783 | ||||
| * | Workaround for a compiler bug (see <rdar://problem/5852746>). Once that bug is | Bill Wendling | 2008-05-06 | 1 | -1/+3 |
| | | | | | | | fixed, revert this patch. llvm-svn: 50782 | ||||
| * | Fix <rdar://problem/5879237> clang objc rewriter: ivars not accessible in ↵ | Steve Naroff | 2008-05-06 | 1 | -3/+29 |
| | | | | | | | structure generated for class llvm-svn: 50781 | ||||
| * | Update a couple VC++ project files. | Steve Naroff | 2008-05-06 | 2 | -1/+31 |
| | | | | | llvm-svn: 50780 | ||||
| * | Print ObjC methods of ObjC classes. | Fariborz Jahanian | 2008-05-06 | 1 | -0/+8 |
| | | | | | llvm-svn: 50779 | ||||
| * | Use target triple in tests, not 'realign-stack=0' option. Per request. | Anton Korobeynikov | 2008-05-06 | 4 | -5/+5 |
| | | | | | llvm-svn: 50778 | ||||
| * | Don't report leaks for autoreleased objects. | Ted Kremenek | 2008-05-06 | 2 | -63/+23 |
| | | | | | llvm-svn: 50777 | ||||
| * | If weak GlobalVariable was bitcast'ed to different type during linking | Anton Korobeynikov | 2008-05-06 | 1 | -1/+1 |
| | | | | | | | we will need to strip all casts for intializer lookup. llvm-svn: 50776 | ||||
| * | Make StripPointerCast a common function (should we mak it method of Value ↵ | Anton Korobeynikov | 2008-05-06 | 9 | -43/+42 |
| | | | | | | | instead?) llvm-svn: 50775 | ||||
| * | Fix <rdar://problem/5888515> clang ObjC rewriter: Use objc.h for ↵ | Steve Naroff | 2008-05-06 | 1 | -15/+17 |
| | | | | | | | declarations instead of putting them in the preamble? llvm-svn: 50774 | ||||
| * | Added "DisplayHint" to PathDiagnosticPiece to provide a hint for the | Ted Kremenek | 2008-05-06 | 1 | -8/+19 |
| | | | | | | | PathDiagnosticClient of where to display a string (beyond just the SourceLocation). llvm-svn: 50773 | ||||
| * | More comments. | Ted Kremenek | 2008-05-06 | 1 | -73/+72 |
| | | | | | | | "#if 0" out some assumptions when auto-generating method summaries. llvm-svn: 50772 | ||||
| * | Testcase for r50770. | Owen Anderson | 2008-05-06 | 1 | -0/+109 |
| | | | | | llvm-svn: 50771 | ||||
| * | We need to update PHIs containing the exiting block, not the exit block. We ↵ | Owen Anderson | 2008-05-06 | 1 | -3/+8 |
| | | | | | | | really should come up with better names for these. llvm-svn: 50770 | ||||
| * | Fix PR2101 - Codegen crash during bitfield initialization. | Devang Patel | 2008-05-06 | 2 | -3/+33 |
| | | | | | llvm-svn: 50769 | ||||
| * | Improve documentation. | Gordon Henriksen | 2008-05-06 | 1 | -1/+2 |
| | | | | | llvm-svn: 50768 | ||||
| * | Fix <rdar://problem/5881225> clang ObjC Rewriter: Protocol structure defined ↵ | Steve Naroff | 2008-05-06 | 1 | -1/+11 |
| | | | | | | | twice when two interfaces use it in same file llvm-svn: 50767 | ||||
| * | Change from llvm::SmallSet<std::string> to llvm::StringMap<char>. | Mikhail Glushenkov | 2008-05-06 | 3 | -6/+18 |
| | | | | | llvm-svn: 50766 | ||||
| * | Add new edge property combinator: weight. | Mikhail Glushenkov | 2008-05-06 | 3 | -60/+100 |
| | | | | | llvm-svn: 50765 | ||||
| * | Add a help string for the -c option | Mikhail Glushenkov | 2008-05-06 | 1 | -1/+2 |
| | | | | | llvm-svn: 50764 | ||||
| * | Update documentation to reflect the current state of affairs. | Mikhail Glushenkov | 2008-05-06 | 1 | -61/+157 |
| | | | | | llvm-svn: 50763 | ||||
| * | Some cosmetic changes (change some comments, move code around a bit). | Mikhail Glushenkov | 2008-05-06 | 2 | -43/+44 |
| | | | | | llvm-svn: 50762 | ||||
| * | Move test files around a bit - fixes the reported number of test cases. | Mikhail Glushenkov | 2008-05-06 | 5 | -2/+2 |
| | | | | | llvm-svn: 50761 | ||||
| * | Refactoring: split the function CompilationGraph::Build() into two parts. | Mikhail Glushenkov | 2008-05-06 | 2 | -10/+22 |
| | | | | | llvm-svn: 50760 | ||||
| * | Use edge weights to choose the right linker based on input language names. | Mikhail Glushenkov | 2008-05-06 | 7 | -42/+94 |
| | | | | | llvm-svn: 50759 | ||||
| * | Test was accidently nullified in previous check-in. | Fariborz Jahanian | 2008-05-06 | 1 | -0/+14 |
| | | | | | llvm-svn: 50758 | ||||
| * | Add weights to graph edges. Choose between edges based on their weight. | Mikhail Glushenkov | 2008-05-06 | 3 | -37/+32 |
| | | | | | llvm-svn: 50757 | ||||
| * | Remove the UnpackValues() function. | Mikhail Glushenkov | 2008-05-06 | 4 | -30/+4 |
| | | | | | llvm-svn: 50756 | ||||
| * | Add a --linker command-line option, make all tests pass. | Mikhail Glushenkov | 2008-05-06 | 5 | -22/+29 |
| | | | | | llvm-svn: 50755 | ||||
| * | Naming fix: LLVMCCConfigurationEmitter -> LLVMCConfigurationEmitter. | Mikhail Glushenkov | 2008-05-06 | 4 | -14/+14 |
| | | | | | llvm-svn: 50754 | ||||
| * | Experiment with not converting bug names to lower case. | Ted Kremenek | 2008-05-06 | 2 | -13/+42 |
| | | | | | llvm-svn: 50753 | ||||
| * | Add two (currently failing) tests. | Mikhail Glushenkov | 2008-05-06 | 4 | -0/+45 |
| | | | | | llvm-svn: 50752 | ||||
| * | More refactorings in GeneratePathDiagnostic: use ExecutionContinues to display | Ted Kremenek | 2008-05-06 | 1 | -14/+28 |
| | | | | | | | "Execution continues..." message, which does a better job at handling corner cases. llvm-svn: 50751 | ||||
| * | Add -x option (like in gcc). | Mikhail Glushenkov | 2008-05-06 | 5 | -22/+93 |
| | | | | | llvm-svn: 50750 | ||||
| * | Take object file as input and handle files with the same name correctly. | Mikhail Glushenkov | 2008-05-06 | 7 | -49/+60 |
| | | | | | llvm-svn: 50749 | ||||
| * | Rename LLVMCCConfigurationEmitter to LLVMCConfigurationEmitter | Mikhail Glushenkov | 2008-05-06 | 3 | -6/+6 |
| | | | | | llvm-svn: 50748 | ||||
| * | Patch to refactor setter/getter names of property attributes into Selector | Fariborz Jahanian | 2008-05-06 | 8 | -27/+23 |
| | | | | | | | | (was IdentifierInfo * before). This will make method declartations whole lot easier. llvm-svn: 50747 | ||||
| * | Add output redirection, rename namespace llvmcc to namespace llvmc. | Mikhail Glushenkov | 2008-05-06 | 10 | -32/+52 |
| | | | | | llvm-svn: 50746 | ||||
| * | Make AutoGenerated.inc depend also on Tools.td and Common.td | Mikhail Glushenkov | 2008-05-06 | 1 | -2/+2 |
| | | | | | llvm-svn: 50745 | ||||

