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

Chris Lattner lattner at cs.uiuc.edu
Tue Aug 15 19:47:58 PDT 2006



Changes in directory llvm/lib/Target/X86:

README.txt updated: 1.123 -> 1.124
---
Log message:

add a note


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

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


Index: llvm/lib/Target/X86/README.txt
diff -u llvm/lib/Target/X86/README.txt:1.123 llvm/lib/Target/X86/README.txt:1.124
--- llvm/lib/Target/X86/README.txt:1.123	Wed Aug  2 00:31:20 2006
+++ llvm/lib/Target/X86/README.txt	Tue Aug 15 21:47:44 2006
@@ -709,3 +709,16 @@
 
 When using fastcc abi, align stack slot of argument of type double on 8 byte
 boundary to improve performance.
+
+//===---------------------------------------------------------------------===//
+
+Codegen:
+
+if ((variable == 4) || (variable == 6)) { stuff }
+
+as:
+
+or eax, 2
+cmp eax, 6
+jz label
+






More information about the llvm-commits mailing list