summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Terminate with newline.Reid Spencer2007-04-221-2/+0
| | | | llvm-svn: 36345
* Undo premature commit.Reid Spencer2007-04-221-4/+1
| | | | llvm-svn: 36344
* Terminate file with newline.Reid Spencer2007-04-221-1/+4
| | | | llvm-svn: 36343
* Implement review feedback.Jeff Cohen2007-04-221-2/+2
| | | | llvm-svn: 36342
* Teach Visual Studio about Bitcode.Jeff Cohen2007-04-224-5/+179
| | | | llvm-svn: 36341
* Undo erroneous corrections.Jeff Cohen2007-04-221-4/+4
| | | | llvm-svn: 36340
* Fix the comparison of language names to accept any characters by usingReid Spencer2007-04-221-1/+1
| | | | | | "string first" instead of "regexp match". This helps C++ tests get executed. llvm-svn: 36339
* Fix generation of certain scheduler itineraries.Christopher Lamb2007-04-221-1/+2
| | | | llvm-svn: 36338
* add llvm ir bitcode definition fileChris Lattner2007-04-221-0/+87
| | | | llvm-svn: 36337
* don't break reading from stdinChris Lattner2007-04-221-2/+3
| | | | llvm-svn: 36336
* link in bitwriter libraryChris Lattner2007-04-221-1/+1
| | | | llvm-svn: 36335
* teach llvm-dis to read bitcode filesChris Lattner2007-04-222-4/+9
| | | | llvm-svn: 36334
* add a temporary -bitcode option, which instructs llvm-as to produce a ↵Chris Lattner2007-04-221-2/+11
| | | | | | bitcode file instead of a bytecode file llvm-svn: 36333
* build the bitcode dirChris Lattner2007-04-222-2/+16
| | | | llvm-svn: 36332
* Initial support for writing bitcode files. This currently only writes types,Chris Lattner2007-04-224-0/+652
| | | | | | | the type symtab, and global/function protos, and is missing the important size optimization, but it is a place to start. llvm-svn: 36331
* Initial support for reading bitcode files. They currently only read types,Chris Lattner2007-04-224-0/+633
| | | | | | | the type symtab, and global/function protos, and are missing the important size optimization, but it is a place to start. llvm-svn: 36330
* Define the content-independent interfaces to read/write bitcode files andChris Lattner2007-04-224-0/+523
| | | | | | | | the high-level interface to read/write LLVM IR bitcode files. This is a work in progress. llvm-svn: 36329
* Make running these tests conditional on llvm-gcc supporting the languageReid Spencer2007-04-222-2/+6
| | | | | | of these test cases. llvm-svn: 36328
* For PR1146:Reid Spencer2007-04-2212-192/+211
| | | | | | | | Make ParamAttrsList objects unique. You can no longer directly create or destroy them but instead must go through the ParamAttrsList::get() interface. llvm-svn: 36327
* Add the --host-target option.Reid Spencer2007-04-221-0/+2
| | | | llvm-svn: 36326
* Minor corrections.Jeff Cohen2007-04-221-41/+37
| | | | llvm-svn: 36325
* Implement PIC for arm-linux.Lauro Ramos Venancio2007-04-227-13/+88
| | | | llvm-svn: 36324
* Add a .cvsignore file.Reid Spencer2007-04-211-0/+1
| | | | llvm-svn: 36323
* Replace llvm_gcc_supports_ada and llvm_gcc_supports_objc with just a singleReid Spencer2007-04-213-30/+33
| | | | | | | | llvm_gcc_supports function that takes the language as an argument. Base that function on the new LLVMGCC_LANGS configured variable so that we don't have to execute feature checks during the test run. llvm-svn: 36322
* Pass the LLVMGCC_LANGS variable through to Tcl.Reid Spencer2007-04-211-0/+1
| | | | llvm-svn: 36321
* Regenerate for detection of llvm-gcc supported languagesReid Spencer2007-04-211-25/+34
| | | | llvm-svn: 36320
* Add support for determining which languages the llvm-gcc front endReid Spencer2007-04-212-0/+5
| | | | | | supports. llvm-svn: 36319
* X86 TLS: Implement review feedback.Lauro Ramos Venancio2007-04-213-14/+15
| | | | llvm-svn: 36318
* llvm-dg.exp is dead, remove it.Reid Spencer2007-04-211-136/+0
| | | | llvm-svn: 36317
* Failure.sh is dead, remove it.Reid Spencer2007-04-212-8/+0
| | | | llvm-svn: 36316
* Use the llvm_supports_target function to prevent running of tests forReid Spencer2007-04-217-7/+21
| | | | | | targets that LLVM is not configured to support. llvm-svn: 36315
* Add the llvm_supports_target function.Reid Spencer2007-04-211-0/+9
| | | | llvm-svn: 36314
* Add the TARGETS_TO_BUILD variable.Reid Spencer2007-04-211-0/+1
| | | | llvm-svn: 36313
* Test if the compiler supports Ada, and enable Ada tests if so. While I wasDuncan Sands2007-04-212-0/+23
| | | | | | there, delete a temporary file the objc test forgot to delete. llvm-svn: 36312
* Always print the same "PR" information in the same location (just afterReid Spencer2007-04-211-5/+5
| | | | | | | the test name) in all cases (PASS, XPASS, FAIL, XFAIL). This makes the output consistent and more amenable to parsing by nightly test. llvm-svn: 36311
* Put failure information on a separate line. Hopefully this unbreaks theReid Spencer2007-04-211-4/+4
| | | | | | | nightly tester which expects the FAIL: line to only have the test name on it. llvm-svn: 36310
* Revert Christopher Lamb's load/store alignment changes.Reid Spencer2007-04-2114-3478/+4377
| | | | llvm-svn: 36309
* We only need one putchar which gives it a shot at getting matched by itsReid Spencer2007-04-211-17/+4
| | | | | | users. llvm-svn: 36305
* Make enum-valued bitfield large enough to avoid interpretation as negative ↵Jeff Cohen2007-04-211-1/+1
| | | | | | values in VC++. llvm-svn: 36304
* Fix breakage of bytecode reader when built with VC++.Jeff Cohen2007-04-211-2/+4
| | | | llvm-svn: 36303
* The expression "SubclassData = (SubclassData & ~1) | (V) ? 1 : 0;" does not ↵Jeff Cohen2007-04-211-2/+2
| | | | | | | | do what was intended! | has higher precedence than ?. Caught by Visual Studio. llvm-svn: 36302
* add support for alignment attributes on load/store instructionsChristopher Lamb2007-04-2119-4383/+3502
| | | | llvm-svn: 36301
* Make PredicateSimplifier not use DominatorTree.Owen Anderson2007-04-211-31/+32
| | | | llvm-svn: 36300
* Fix a comment.Owen Anderson2007-04-212-2/+2
| | | | llvm-svn: 36299
* Fix some null checks to actually test the part that needs checking.Owen Anderson2007-04-211-3/+2
| | | | llvm-svn: 36298
* make this portable to 64-bit hostsChris Lattner2007-04-211-1/+1
| | | | llvm-svn: 36297
* Bug fix; add super-registers sets.Evan Cheng2007-04-211-11/+58
| | | | llvm-svn: 36296
* Add super-register set.Evan Cheng2007-04-211-1/+13
| | | | llvm-svn: 36295
* Reset vertex.Devang Patel2007-04-211-0/+1
| | | | | | Fix http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070416/048092.html llvm-svn: 36294
* New test case.Devang Patel2007-04-211-0/+28
| | | | llvm-svn: 36293
OpenPOWER on IntegriCloud