| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Implement support for -w, which silences all warnings. PR2384. | Chris Lattner | 2008-05-29 | 1 | -4/+9 |
| | | | | | llvm-svn: 51683 | ||||
| * | Make sure to define __sparc__ on Solaris; this should "fix" | Eli Friedman | 2008-05-25 | 1 | -0/+1 |
| | | | | | | | test/Codegen/mandel.c on Solaris. :-) llvm-svn: 51554 | ||||
| * | Missed an include. | Eli Friedman | 2008-05-20 | 1 | -0/+1 |
| | | | | | llvm-svn: 51321 | ||||
| * | Minor correction for PPC targets. | Eli Friedman | 2008-05-20 | 1 | -1/+4 |
| | | | | | llvm-svn: 51320 | ||||
| * | Some small changes to make the target info a bit more accurate. | Eli Friedman | 2008-05-20 | 2 | -11/+30 |
| | | | | | llvm-svn: 51319 | ||||
| * | set long/pointers to 64-bits on ppc64/x86-64 | Chris Lattner | 2008-05-09 | 1 | -2/+6 |
| | | | | | llvm-svn: 50891 | ||||
| * | parameterize pointer size/align better without doing virtual method calls in ↵ | Chris Lattner | 2008-05-09 | 2 | -4/+3 |
| | | | | | | | normal case. llvm-svn: 50890 | ||||
| * | parameterize long long. | Chris Lattner | 2008-05-09 | 1 | -1/+2 |
| | | | | | llvm-svn: 50887 | ||||
| * | correctly parameterize long, patch by Nate. | Chris Lattner | 2008-05-09 | 1 | -0/+1 |
| | | | | | llvm-svn: 50886 | ||||
| * | Add basic support for the pic-* target triples and add support for | Chris Lattner | 2008-05-08 | 2 | -0/+34 |
| | | | | | | | | | | targets that do not support recursion (and thus codegen stack variables as globals). Patch contributed by Alireza Moshtaghi! llvm-svn: 50844 | ||||
| * | Add -fobjc-gc and -fobjc-gc-only options to the driver. | Ted Kremenek | 2008-04-29 | 1 | -1/+3 |
| | | | | | | | Add corresponding enum in LangOptions. llvm-svn: 50387 | ||||
| * | Have ValidateOutputConstraint return false instead of firing an assertion | Ted Kremenek | 2008-04-24 | 1 | -2/+2 |
| | | | | | | | | when processing a constraint we don't understand. This allows the frontend to gracefully fail. llvm-svn: 50213 | ||||
| * | Add some basic ARM asm constraints | Nate Begeman | 2008-04-22 | 1 | -1/+10 |
| | | | | | llvm-svn: 50085 | ||||
| * | Fix pasto, thanks to Anders for pointing this out. | Chris Lattner | 2008-04-21 | 1 | -1/+1 |
| | | | | | llvm-svn: 50055 | ||||
| * | add arm support | Chris Lattner | 2008-04-21 | 1 | -0/+132 |
| | | | | | llvm-svn: 50049 | ||||
| * | Tabs -> spaces | Nate Begeman | 2008-04-18 | 1 | -2/+2 |
| | | | | | llvm-svn: 49909 | ||||
| * | Initialize default double width and alignment | Nate Begeman | 2008-04-18 | 1 | -0/+2 |
| | | | | | llvm-svn: 49899 | ||||
| * | Fix regression in Diagnostic that caused it to not register the number | Ted Kremenek | 2008-04-14 | 1 | -2/+3 |
| | | | | | | | of errors. llvm-svn: 49686 | ||||
| * | Added "getCanonicalID()", "isFromSameFile", and "isFromMainFile" to compare | Ted Kremenek | 2008-04-14 | 1 | -0/+4 |
| | | | | | | | | | the files of different SourceLocations. These methods correctly handle the case where a file may have multiple FileIDs due to it being large enough to be spread across several chunks. llvm-svn: 49682 | ||||
| * | Only increment the number of diagnostics when the DiagnosticClient used | Ted Kremenek | 2008-04-14 | 1 | -2/+6 |
| | | | | | | | is the one attached to the Diagnostic object. llvm-svn: 49677 | ||||
| * | add a missing #include | Chris Lattner | 2008-04-06 | 1 | -0/+1 |
| | | | | | llvm-svn: 49256 | ||||
| * | Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc. | Ted Kremenek | 2008-04-03 | 1 | -2/+13 |
| | | | | | llvm-svn: 49177 | ||||
| * | Update to match simplified llvm MemoryBuffer interfaces for files. | Chris Lattner | 2008-04-01 | 1 | -2/+1 |
| | | | | | llvm-svn: 49042 | ||||
| * | prune dead #includes | Chris Lattner | 2008-04-01 | 1 | -2/+0 |
| | | | | | llvm-svn: 49033 | ||||
| * | MemoryBuffer::getFile got smarter, obviating the need for readfilefast. | Chris Lattner | 2008-04-01 | 1 | -60/+3 |
| | | | | | | | | The new MemoryBuffer doesn't "leak" file descriptors and handles the small file case efficiently. llvm-svn: 49032 | ||||
| * | Hack ReadFileFast() to raise the threshold of memory mapped files (from ↵ | Steve Naroff | 2008-03-31 | 1 | -1/+1 |
| | | | | | | | | | | | 4->12 pages). This is a temporary solution to avoid running out of file descriptors (which defaults to 256). Need to benchmark to understand the speed benefit. If the benefit is small, the simple solution is to avoid memory mapping files. If the benefit is significant, more thought is necessary. llvm-svn: 48991 | ||||
| * | Added variation of the "Report" method in the class Diagnostic that takes | Ted Kremenek | 2008-03-31 | 1 | -3/+7 |
| | | | | | | | | an optional DiagnosticClient argument that differs from the client stored internally in the Diagnostic object. llvm-svn: 48986 | ||||
| * | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner | 2008-03-15 | 10 | -0/+2787 |
| lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402 | |||||

