Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use references to attribute groups on the call/invoke instructions. | Bill Wendling | 2013-02-22 | 1 | -5/+5 |
| | | | | | | | Listing all of the attributes for the callee of a call/invoke instruction is way too much and makes the IR unreadable. Use references to attributes instead. llvm-svn: 175877 | ||||
* | Modify the LLVM assembly output so that it uses references to represent ↵ | Bill Wendling | 2013-02-20 | 1 | -0/+3 |
| | | | | | | | | | | | function attributes. This makes the LLVM assembly look better. E.g.: define void @foo() #0 { ret void } attributes #0 = { nounwind noinline ssp } llvm-svn: 175605 | ||||
* | FileCheck-ize these tests. Harden some of them. | Bill Wendling | 2012-04-24 | 1 | -4/+22 |
| | | | | llvm-svn: 155432 | ||||
* | Change tests from "opt %s" to "opt < %s" so that opt doesn't see the | Dan Gohman | 2009-09-11 | 1 | -3/+3 |
| | | | | | | | | input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537 | ||||
* | Use opt -S instead of piping bitcode output through llvm-dis. | Dan Gohman | 2009-09-08 | 1 | -3/+3 |
| | | | | llvm-svn: 81257 | ||||
* | Change these tests to feed the assembly files to opt directly, instead | Dan Gohman | 2009-09-08 | 1 | -3/+3 |
| | | | | | | of using llvm-as, now that opt supports this. llvm-svn: 81226 | ||||
* | Make GVN able to remove unnecessary calls to read-only functions again. | Owen Anderson | 2008-04-17 | 1 | -0/+33 |
| | | | | llvm-svn: 49842 | ||||
* | The functionality being tested was removed because it was horribly unsafe. | Owen Anderson | 2008-04-13 | 1 | -33/+0 |
| | | | | llvm-svn: 49610 | ||||
* | Allow GVN to eliminate read-only function calls when it can detect that they ↵ | Owen Anderson | 2007-11-26 | 1 | -1/+1 |
| | | | | | | are redundant. llvm-svn: 44323 | ||||
* | Teach alias analysis about readnone/readonly functions. | Duncan Sands | 2007-11-22 | 1 | -0/+33 |
Based on a patch by Török Edwin. llvm-svn: 44279 |