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
//===---------------------------------------------------------------------===//
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;