diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/slow-incdec.ll | 32 |
1 files changed, 10 insertions, 22 deletions
diff --git a/llvm/test/CodeGen/X86/slow-incdec.ll b/llvm/test/CodeGen/X86/slow-incdec.ll index 715a6fe150e..5c406c77aa8 100644 --- a/llvm/test/CodeGen/X86/slow-incdec.ll +++ b/llvm/test/CodeGen/X86/slow-incdec.ll @@ -35,33 +35,21 @@ define i32 @dec(i32 %x) { } define i32 @inc_size(i32 %x) optsize { -; INCDEC-LABEL: inc_size: -; INCDEC: # BB#0: -; INCDEC-NEXT: movl {{[0-9]+}}(%esp), %eax -; INCDEC-NEXT: incl %eax -; INCDEC-NEXT: retl -; -; ADD-LABEL: inc_size: -; ADD: # BB#0: -; ADD-NEXT: movl {{[0-9]+}}(%esp), %eax -; ADD-NEXT: addl $1, %eax -; ADD-NEXT: retl +; CHECK-LABEL: inc_size: +; CHECK: # BB#0: +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax +; CHECK-NEXT: incl %eax +; CHECK-NEXT: retl %r = add i32 %x, 1 ret i32 %r } define i32 @dec_size(i32 %x) optsize { -; INCDEC-LABEL: dec_size: -; INCDEC: # BB#0: -; INCDEC-NEXT: movl {{[0-9]+}}(%esp), %eax -; INCDEC-NEXT: decl %eax -; INCDEC-NEXT: retl -; -; ADD-LABEL: dec_size: -; ADD: # BB#0: -; ADD-NEXT: movl {{[0-9]+}}(%esp), %eax -; ADD-NEXT: addl $-1, %eax -; ADD-NEXT: retl +; CHECK-LABEL: dec_size: +; CHECK: # BB#0: +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax +; CHECK-NEXT: decl %eax +; CHECK-NEXT: retl %r = add i32 %x, -1 ret i32 %r } |