add a note with a testcase

llvm-svn: 26877
This commit is contained in:
Chris Lattner 2006-03-19 22:27:41 +00:00
parent d2ff59bfed
commit d16f6fdd49
1 changed files with 11 additions and 0 deletions

View File

@ -633,3 +633,14 @@ dependent LICM pass or 2) makeing SelectDAG represent the whole function.
The following tests perform worse with LSR:
lambda, siod, optimizer-eval, ackermann, hash2, nestedloop, strcat, and Treesor.
//===---------------------------------------------------------------------===//
Should generate min/max for stuff like:
void minf(float a, float b, float *X) {
*X = a <= b ? a : b;
}
//===---------------------------------------------------------------------===//