[llvm-commits] CVS: llvm/lib/Target/X86/README.txt

Chris Lattner lattner at cs.uiuc.edu
Sun Mar 19 14:27:53 PST 2006



Changes in directory llvm/lib/Target/X86:

README.txt updated: 1.67 -> 1.68
---
Log message:

add a note with a testcase


---
Diffs of the changes:  (+11 -0)

 README.txt |   11 +++++++++++
 1 files changed, 11 insertions(+)


Index: llvm/lib/Target/X86/README.txt
diff -u llvm/lib/Target/X86/README.txt:1.67 llvm/lib/Target/X86/README.txt:1.68
--- llvm/lib/Target/X86/README.txt:1.67	Sun Mar 19 00:08:11 2006
+++ llvm/lib/Target/X86/README.txt	Sun Mar 19 16:27:41 2006
@@ -633,3 +633,14 @@
 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;
+}
+
+//===---------------------------------------------------------------------===//
+






More information about the llvm-commits mailing list