Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Terminate with newline. | Reid Spencer | 2007-04-22 | 1 | -2/+0 |
| | | | | llvm-svn: 36345 | ||||
* | Undo premature commit. | Reid Spencer | 2007-04-22 | 1 | -4/+1 |
| | | | | llvm-svn: 36344 | ||||
* | Terminate file with newline. | Reid Spencer | 2007-04-22 | 1 | -1/+4 |
| | | | | llvm-svn: 36343 | ||||
* | Implement review feedback. | Jeff Cohen | 2007-04-22 | 1 | -2/+2 |
| | | | | llvm-svn: 36342 | ||||
* | Teach Visual Studio about Bitcode. | Jeff Cohen | 2007-04-22 | 4 | -5/+179 |
| | | | | llvm-svn: 36341 | ||||
* | Undo erroneous corrections. | Jeff Cohen | 2007-04-22 | 1 | -4/+4 |
| | | | | llvm-svn: 36340 | ||||
* | Fix the comparison of language names to accept any characters by using | Reid Spencer | 2007-04-22 | 1 | -1/+1 |
| | | | | | | "string first" instead of "regexp match". This helps C++ tests get executed. llvm-svn: 36339 | ||||
* | Fix generation of certain scheduler itineraries. | Christopher Lamb | 2007-04-22 | 1 | -1/+2 |
| | | | | llvm-svn: 36338 | ||||
* | add llvm ir bitcode definition file | Chris Lattner | 2007-04-22 | 1 | -0/+87 |
| | | | | llvm-svn: 36337 | ||||
* | don't break reading from stdin | Chris Lattner | 2007-04-22 | 1 | -2/+3 |
| | | | | llvm-svn: 36336 | ||||
* | link in bitwriter library | Chris Lattner | 2007-04-22 | 1 | -1/+1 |
| | | | | llvm-svn: 36335 | ||||
* | teach llvm-dis to read bitcode files | Chris Lattner | 2007-04-22 | 2 | -4/+9 |
| | | | | llvm-svn: 36334 | ||||
* | add a temporary -bitcode option, which instructs llvm-as to produce a ↵ | Chris Lattner | 2007-04-22 | 1 | -2/+11 |
| | | | | | | bitcode file instead of a bytecode file llvm-svn: 36333 | ||||
* | build the bitcode dir | Chris Lattner | 2007-04-22 | 2 | -2/+16 |
| | | | | llvm-svn: 36332 | ||||
* | Initial support for writing bitcode files. This currently only writes types, | Chris Lattner | 2007-04-22 | 4 | -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 Lattner | 2007-04-22 | 4 | -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 and | Chris Lattner | 2007-04-22 | 4 | -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 language | Reid Spencer | 2007-04-22 | 2 | -2/+6 |
| | | | | | | of these test cases. llvm-svn: 36328 | ||||
* | For PR1146: | Reid Spencer | 2007-04-22 | 12 | -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 Spencer | 2007-04-22 | 1 | -0/+2 |
| | | | | llvm-svn: 36326 | ||||
* | Minor corrections. | Jeff Cohen | 2007-04-22 | 1 | -41/+37 |
| | | | | llvm-svn: 36325 | ||||
* | Implement PIC for arm-linux. | Lauro Ramos Venancio | 2007-04-22 | 7 | -13/+88 |
| | | | | llvm-svn: 36324 | ||||
* | Add a .cvsignore file. | Reid Spencer | 2007-04-21 | 1 | -0/+1 |
| | | | | llvm-svn: 36323 | ||||
* | Replace llvm_gcc_supports_ada and llvm_gcc_supports_objc with just a single | Reid Spencer | 2007-04-21 | 3 | -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 Spencer | 2007-04-21 | 1 | -0/+1 |
| | | | | llvm-svn: 36321 | ||||
* | Regenerate for detection of llvm-gcc supported languages | Reid Spencer | 2007-04-21 | 1 | -25/+34 |
| | | | | llvm-svn: 36320 | ||||
* | Add support for determining which languages the llvm-gcc front end | Reid Spencer | 2007-04-21 | 2 | -0/+5 |
| | | | | | | supports. llvm-svn: 36319 | ||||
* | X86 TLS: Implement review feedback. | Lauro Ramos Venancio | 2007-04-21 | 3 | -14/+15 |
| | | | | llvm-svn: 36318 | ||||
* | llvm-dg.exp is dead, remove it. | Reid Spencer | 2007-04-21 | 1 | -136/+0 |
| | | | | llvm-svn: 36317 | ||||
* | Failure.sh is dead, remove it. | Reid Spencer | 2007-04-21 | 2 | -8/+0 |
| | | | | llvm-svn: 36316 | ||||
* | Use the llvm_supports_target function to prevent running of tests for | Reid Spencer | 2007-04-21 | 7 | -7/+21 |
| | | | | | | targets that LLVM is not configured to support. llvm-svn: 36315 | ||||
* | Add the llvm_supports_target function. | Reid Spencer | 2007-04-21 | 1 | -0/+9 |
| | | | | llvm-svn: 36314 | ||||
* | Add the TARGETS_TO_BUILD variable. | Reid Spencer | 2007-04-21 | 1 | -0/+1 |
| | | | | llvm-svn: 36313 | ||||
* | Test if the compiler supports Ada, and enable Ada tests if so. While I was | Duncan Sands | 2007-04-21 | 2 | -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 after | Reid Spencer | 2007-04-21 | 1 | -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 the | Reid Spencer | 2007-04-21 | 1 | -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 Spencer | 2007-04-21 | 14 | -3478/+4377 |
| | | | | llvm-svn: 36309 | ||||
* | We only need one putchar which gives it a shot at getting matched by its | Reid Spencer | 2007-04-21 | 1 | -17/+4 |
| | | | | | | users. llvm-svn: 36305 | ||||
* | Make enum-valued bitfield large enough to avoid interpretation as negative ↵ | Jeff Cohen | 2007-04-21 | 1 | -1/+1 |
| | | | | | | values in VC++. llvm-svn: 36304 | ||||
* | Fix breakage of bytecode reader when built with VC++. | Jeff Cohen | 2007-04-21 | 1 | -2/+4 |
| | | | | llvm-svn: 36303 | ||||
* | The expression "SubclassData = (SubclassData & ~1) | (V) ? 1 : 0;" does not ↵ | Jeff Cohen | 2007-04-21 | 1 | -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 instructions | Christopher Lamb | 2007-04-21 | 19 | -4383/+3502 |
| | | | | llvm-svn: 36301 | ||||
* | Make PredicateSimplifier not use DominatorTree. | Owen Anderson | 2007-04-21 | 1 | -31/+32 |
| | | | | llvm-svn: 36300 | ||||
* | Fix a comment. | Owen Anderson | 2007-04-21 | 2 | -2/+2 |
| | | | | llvm-svn: 36299 | ||||
* | Fix some null checks to actually test the part that needs checking. | Owen Anderson | 2007-04-21 | 1 | -3/+2 |
| | | | | llvm-svn: 36298 | ||||
* | make this portable to 64-bit hosts | Chris Lattner | 2007-04-21 | 1 | -1/+1 |
| | | | | llvm-svn: 36297 | ||||
* | Bug fix; add super-registers sets. | Evan Cheng | 2007-04-21 | 1 | -11/+58 |
| | | | | llvm-svn: 36296 | ||||
* | Add super-register set. | Evan Cheng | 2007-04-21 | 1 | -1/+13 |
| | | | | llvm-svn: 36295 | ||||
* | Reset vertex. | Devang Patel | 2007-04-21 | 1 | -0/+1 |
| | | | | | | Fix http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070416/048092.html llvm-svn: 36294 | ||||
* | New test case. | Devang Patel | 2007-04-21 | 1 | -0/+28 |
| | | | | llvm-svn: 36293 |