summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-11 18:16:46 +0000
committerChris Lattner <sabre@nondot.org>2007-08-11 18:16:46 +0000
commit384f4a94f8477f3da0982cf8a41596def359e737 (patch)
tree5957ed6c90981dee42c5851a4e60557d6bdb62ed
parent3c5b57c884f96d3cd13dec81e48633764f71ccfd (diff)
downloadexternal_llvm-384f4a94f8477f3da0982cf8a41596def359e737.zip
external_llvm-384f4a94f8477f3da0982cf8a41596def359e737.tar.gz
external_llvm-384f4a94f8477f3da0982cf8a41596def359e737.tar.bz2
With evan's explicit flag representation, hopefully we will finally be
able to 3-addressify away stuff like this: movl %ecx, %eax decl %eax git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41020 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt
index 96f4941..ab11011 100644
--- a/lib/Target/X86/README.txt
+++ b/lib/Target/X86/README.txt
@@ -959,7 +959,7 @@ Though this probably isn't worth it.
//===---------------------------------------------------------------------===//
We need to teach the codegen to convert two-address INC instructions to LEA
-when the flags are dead. For example, on X86-64, compile:
+when the flags are dead (likewise dec). For example, on X86-64, compile:
int foo(int A, int B) {
return A+1;