add a note with a testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26877 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-19 22:27:41 +00:00
parent 355ef219d2
commit 8bcf926277

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;
}
//===---------------------------------------------------------------------===//