diff options
-rw-r--r-- | lib/Target/X86/README.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt index ac162c26d5..429d159fce 100644 --- a/lib/Target/X86/README.txt +++ b/lib/Target/X86/README.txt @@ -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; +} + +//===---------------------------------------------------------------------===// + |