Age | Commit message (Expand) | Author |
2012-07-02 | Fix the remaining TCL-style quotes found in the testsuite. This is | Chandler Carruth |
2012-07-02 | Convert all tests using TCL-style quoting to use shell-style quoting. | Chandler Carruth |
2012-06-25 | revert my previous commit (r159173), since as Eli pointed out, it's perfectly... | Nuno Lopes |
2012-06-25 | do not set realloc() as NotAlias, since it can return the same pointer. This ... | Nuno Lopes |
2012-05-22 | revert my previous patches that introduced an additional parameter to the obj... | Nuno Lopes |
2012-05-18 | FileCheck-ify, apropos of nothing | Joel Jones |
2012-05-15 | Teach SimplifyLibCalls about stpcpy. | David Majnemer |
2012-05-09 | change the objectsize intrinsic signature: add a 3rd parameter to denote the ... | Nuno Lopes |
2012-04-18 | FileCheckify, un-XFAIL SimplifyLibCalls/floor test | Joe Groff |
2012-04-18 | Move win32 SimplifyLibcall test under Transforms | Joe Groff |
2012-02-16 | Replace all instances of dg.exp file with lit.local.cfg, since all tests are ... | Eli Bendersky |
2011-12-27 | Turn cos(-x) into cos(x). Patch by Alexander Malyshev! | Nick Lewycky |
2011-12-22 | Give string constants generated by IRBuilder private linkage. | Benjamin Kramer |
2011-12-12 | Only replace fwrite with fputc, if the return value is unused. | Joerg Sonnenberger |
2011-11-17 | Add support for custom names for library functions in TargetLibraryInfo. Add... | Eli Friedman |
2011-10-29 | SimplifyLibCalls: Use IRBuilder.CreateGlobalString when creating a string for... | Benjamin Kramer |
2011-10-20 | "@string = constant i8 0" is a value i8* string of length zero. Analyze that | Nick Lewycky |
2011-10-17 | Fixed quoting on default data layout option. | Lang Hames |
2011-10-05 | PR11061: Make simplifylibcalls fold strcmp("", x) correctly. | Eli Friedman |
2011-09-27 | Stop emitting instructions with the name "tmp" they eat up memory and have to... | Benjamin Kramer |
2011-08-12 | Move "atomic" and "volatile" designations on instructions after the opcode | Eli Friedman |
2011-06-18 | rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which is | Chris Lattner |
2011-03-09 | Preserve line number information while simplifying libcalls. | Devang Patel |
2011-03-03 | Optimize fprintf -> iprintf if there are no floating point arguments | Richard Osborne |
2011-03-03 | Optimize sprintf -> siprintf if there are no floating point arguments | Richard Osborne |
2011-03-03 | Optimize printf -> iprintf if there are no floating point arguments | Richard Osborne |
2011-02-28 | Delete obsolete test. | Dan Gohman |
2011-02-12 | SimplifyLibCalls: Add missing legalize check on various printf to puts and | Daniel Dunbar |
2011-02-12 | tests: FileCheckize | Daniel Dunbar |
2010-12-17 | Revert r64460. strtol and friends cannot be marked readonly, even with | Dan Gohman |
2010-11-30 | Add a puts optimization that converts puts() to putchar('\n'). | Anders Carlsson |
2010-11-30 | Fix a typo. | Anders Carlsson |
2010-11-30 | Rename this test to FPuts.ll since it actually tests fputs. | Anders Carlsson |
2010-11-29 | Fix some broken CHECK lines. | Benjamin Kramer |
2010-10-28 | test/Transforms/SimplifyLibCalls/floor.ll: Mark as XFAIL:win32 due to lack of... | NAKAMURA Takumi |
2010-09-30 | Add constant folding for strspn and strcspn to SimplifyLibCalls. | Benjamin Kramer |
2010-09-29 | Add strpbrk folding to SimplifyLibCalls. | Benjamin Kramer |
2010-09-29 | Simplify the loop in StrChrOptimizer. FileCheckize test. | Benjamin Kramer |
2010-09-29 | Teach SimplifyLibCalls how to optimize strrchr. | Benjamin Kramer |
2010-06-16 | Make sure that simplify libcalls does not replace a call with one calling | Rafael Espindola |
2010-06-16 | simplify-libcalls: fold strncmp(x, y, 1) -> memcmp(x, y, 1) | Benjamin Kramer |
2010-06-15 | simplify-libcalls: fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0 | Benjamin Kramer |
2010-05-31 | The memcpy intrinsic only takes i8* for %src and %dst, so cast them to that | Nick Lewycky |
2010-05-25 | Properly promote operands when optimizing a single-character memcmp. | Benjamin Kramer |
2010-04-04 | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang |
2010-04-02 | Revert r100191 since it breaks objc in clang | Mon P Wang |
2010-04-02 | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang |
2010-03-30 | Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. | Bob Wilson |
2010-03-30 | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang |
2010-03-23 | Teach simplify libcall to transform __strcpy_chk to __memcpy_chk to enable op... | Evan Cheng |