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

Reid Spencer reid at x10sys.com
Fri Dec 22 22:07:00 PST 2006



Changes in directory llvm/lib/Target:

README.txt updated: 1.52 -> 1.53
---
Log message:

For PR950: http://llvm.org/PR950 :
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and 
been replaced with ICmpInst and FCmpInst.


---
Diffs of the changes:  (+1 -1)

 README.txt |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/README.txt
diff -u llvm/lib/Target/README.txt:1.52 llvm/lib/Target/README.txt:1.53
--- llvm/lib/Target/README.txt:1.52	Sun Dec 10 18:44:03 2006
+++ llvm/lib/Target/README.txt	Sat Dec 23 00:05:41 2006
@@ -324,7 +324,7 @@
 //===---------------------------------------------------------------------===//
 
 -instcombine should handle this transform:
-   setcc (sdiv X / C1 ), C2
+   icmp pred (sdiv X / C1 ), C2
 when X, C1, and C2 are unsigned.  Similarly for udiv and signed operands. 
 
 Currently InstCombine avoids this transform but will do it when the signs of






More information about the llvm-commits mailing list