summaryrefslogtreecommitdiffstats
path: root/llvm/utils
Commit message (Collapse)AuthorAgeFilesLines
* clang++ points out that this is pointless.Chris Lattner2009-11-061-1/+1
| | | | llvm-svn: 86239
* NewNighlytTest: Fix timestamp format to actually make sense (it was missing ↵Daniel Dunbar2009-11-061-1/+2
| | | | | | the hour). llvm-svn: 86229
* NewNightlyTest: Add -noclean option, which doesn't run 'make clean' before ↵Daniel Dunbar2009-11-061-6/+8
| | | | | | | | building LLVM (for testing). Also, switch to always running 'make clean' in the test-suite directories. llvm-svn: 86228
* NewNightlyTest: Unbreak passing the build directory via a positional argument.Daniel Dunbar2009-11-061-7/+7
| | | | llvm-svn: 86227
* NewNightlyTest: Add -llvmgccdir as alternative to environment variable.Daniel Dunbar2009-11-061-8/+15
| | | | llvm-svn: 86226
* Don't print a redundant tab for inline asm, and do use the new printKill.Dan Gohman2009-11-061-2/+1
| | | | llvm-svn: 86206
* Teach lit's SyntaxCheckTest two new tricks:Douglas Gregor2009-11-051-1/+16
| | | | | | | - skip .svn directories - add a set of excluded filenames so we can easily skip tests llvm-svn: 86185
* lit: Add --param NAME=VALUE option, for test suite specific use (to communicateDaniel Dunbar2009-11-052-2/+18
| | | | | | arbitrary command line arguments to the test suite). llvm-svn: 86137
* Look for llvm-gcc under /Developer/usr/bin first.Evan Cheng2009-11-041-1/+1
| | | | llvm-svn: 86023
* Use llvm-gcc on newer Darwins.Bill Wendling2009-11-031-1/+1
| | | | llvm-svn: 85963
* mark some constant global const.Chris Lattner2009-11-031-7/+8
| | | | llvm-svn: 85910
* lit: Update Clang's test style to use XFAIL: and XTARGET: lines that matchDaniel Dunbar2009-11-031-24/+26
| | | | | | LLVM's tests. llvm-svn: 85882
* Support updating 'llvm_add_target' lists as well.Ted Kremenek2009-11-031-1/+1
| | | | llvm-svn: 85860
* Missing bit of universal built + hostedJim Grosbach2009-11-021-1/+1
| | | | llvm-svn: 85785
* Do not infer the target type for COPY_TO_REGCLASS from dest regclass, this ↵Anton Korobeynikov2009-11-021-1/+0
| | | | | | | won't work if it can contain several types. Require explicit result type for the node for now. This fixes PR5364. PS: It seems that blackfin usage of copy_to_regclass is completely bogus! llvm-svn: 85766
* The universal SDKROOT should only be assigned when hosted. Otherwise theJim Grosbach2009-10-311-0/+1
| | | | | | SDKROOT can refer to the target when we're building for the host. llvm-svn: 85672
* Allow cross target buildJim Grosbach2009-10-301-18/+67
| | | | llvm-svn: 85611
* Initial target-independent CodeGen support for BlockAddresses.Dan Gohman2009-10-301-0/+1
| | | | llvm-svn: 85556
* Move some code from being emitted as boilerplate duplicated in everyDan Gohman2009-10-291-58/+0
| | | | | | *ISelDAGToDAG.cpp to being regular code in SelectionDAGISel.cpp. llvm-svn: 85530
* Rename usesCustomDAGSchedInserter to usesCustomInserter, and update aDan Gohman2009-10-294-5/+4
| | | | | | | | bunch of associated comments, because it doesn't have anything to do with DAGs or scheduling. This is another step in decoupling MachineInstr emitting from scheduling. llvm-svn: 85517
* Sorry to break the build.Johnny Chen2009-10-291-1158/+0
| | | | | | | I was trying to check the WIP file to some local repository, but ended up checking in the llvm repository. Oops! llvm-svn: 85470
* Minor tweak to forgo the the curly braces for most case blocks, except whenJohnny Chen2009-10-291-0/+1158
| | | | | | declaring local variables. llvm-svn: 85467
* Add indirectbr and blockaddress to the vim syntax highlighting file.Dan Gohman2009-10-291-1/+2
| | | | llvm-svn: 85451
* 80-col violation.Mikhail Glushenkov2009-10-271-1/+2
| | | | llvm-svn: 85215
* Remove / use flags that are now set in the Makefile.config.Julien Lerouge2009-10-262-4/+0
| | | | llvm-svn: 85149
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-263-3/+3
| | | | | | direct inclusion edge from System to Support. llvm-svn: 85086
* lit: Add --config-prefix option, to override default config file names.Daniel Dunbar2009-10-251-7/+20
| | | | llvm-svn: 85035
* lit: Allow use of /dev/null in redirects on Windows (replace by a temporaryDaniel Dunbar2009-10-251-1/+8
| | | | | | file). llvm-svn: 85028
* Delete a spurious semicolon.Dan Gohman2009-10-241-1/+1
| | | | llvm-svn: 85018
* lit: Support '>>' redirections when executing scripts internally.Daniel Dunbar2009-10-241-0/+9
| | | | llvm-svn: 85014
* Auto-upgrade free instructions to calls to the builtin free function.Victor Hernandez2009-10-241-1/+1
| | | | | | | Update all analysis passes and transforms to treat free calls just like FreeInst. Remove RaiseAllocations and all its tests since FreeInst no longer needs to be raised. llvm-svn: 84987
* Trying again to tweak the top-level Makefile to facilitate an Apple-style build.Stuart Hastings2009-10-222-1/+5
| | | | | | Now with Clang-compatibility. llvm-svn: 84872
* Make 'unset_option' work on list options.Mikhail Glushenkov2009-10-221-6/+6
| | | | llvm-svn: 84827
* Set comment string, patch by Johnny Chen!Chris Lattner2009-10-211-0/+2
| | | | llvm-svn: 84743
* Implement any_[not_]empty and list versions of switch_on and [not_]empty.Mikhail Glushenkov2009-10-211-60/+146
| | | | | | Useful for OptionPreprocessor. llvm-svn: 84728
* NNT: Implement "config mode", use -config path/to/llvm-configDaniel Dunbar2009-10-201-51/+102
| | | | | | | | | - This runs the nightly test and does all the submission logic, but using the LLVM build specified by the llvm-config. - Useful for, among other things, testing NNT itself. llvm-svn: 84620
* NNT: Remove unused BUILDTYPE argument.Daniel Dunbar2009-10-201-7/+2
| | | | llvm-svn: 84619
* Revert "Tweak top-level Makefile to facilitate Apple-style build.", this isDaniel Dunbar2009-10-202-5/+1
| | | | | | breaking Clang's Apple-style build. llvm-svn: 84592
* NNT: Remove duplicate verbose print.Daniel Dunbar2009-10-201-4/+0
| | | | llvm-svn: 84591
* More refactoring...Mikhail Glushenkov2009-10-191-46/+55
| | | | llvm-svn: 84537
* Tweak top-level Makefile to facilitate Apple-style build.Stuart Hastings2009-10-192-1/+5
| | | | llvm-svn: 84507
* NNT: Add -parallel-test option, which runs llvm-test withDaniel Dunbar2009-10-191-0/+2
| | | | | | ENABLE_PARALLEL_REPORT. llvm-svn: 84497
* NNT: Don't hard code -l3.0 argument to make, this is very server dependent. ↵Daniel Dunbar2009-10-191-20/+26
| | | | | | | | Users who care can use -compileflags for this. Also, fix make clean call and a few other tweaks. llvm-svn: 84496
* NNT: Fix refactoro, I dropped the list of all (llvm-test) tests. I'm sure it ↵Daniel Dunbar2009-10-191-6/+7
| | | | | | was named dejagnu_test_list for a good reason. llvm-svn: 84495
* NNT: Lift conditional logic out of test steps.Daniel Dunbar2009-10-191-117/+114
| | | | llvm-svn: 84494
* NNT: Now that build & test steps are factored out, coalesce all the logic ↵Daniel Dunbar2009-10-191-62/+39
| | | | | | together. llvm-svn: 84493
* NNT: Sink code for running nightly test into subroutine.Daniel Dunbar2009-10-191-37/+44
| | | | llvm-svn: 84492
* NNT: Tweaks and simplifications.Daniel Dunbar2009-10-191-137/+62
| | | | | | | | | - Split out configure log. - Kill off GetRegexNum. - Fix GetRegex to not return previous match on failure. - Remove dead code. llvm-svn: 84491
* NNT: Move build code into subroutine.Daniel Dunbar2009-10-191-39/+43
| | | | llvm-svn: 84490
* NNT: Move source checkout code into subroutine.Daniel Dunbar2009-10-191-49/+31
| | | | llvm-svn: 84489
OpenPOWER on IntegriCloud