aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/slow-div.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/slow-div.ll')
-rw-r--r--test/CodeGen/X86/slow-div.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/X86/slow-div.ll b/test/CodeGen/X86/slow-div.ll
index 52223824bf96..82928521ac2b 100644
--- a/test/CodeGen/X86/slow-div.ll
+++ b/test/CodeGen/X86/slow-div.ll
@@ -25,4 +25,19 @@ entry:
ret i64 %div
}
+; Verify that no extra code is generated when optimizing for size.
+
+define i32 @div32_optsize(i32 %a, i32 %b) optsize {
+; DIV32-LABEL: div32_optsize:
+; DIV32-NOT: divb
+ %div = sdiv i32 %a, %b
+ ret i32 %div
+}
+
+define i32 @div32_minsize(i32 %a, i32 %b) minsize {
+; DIV32-LABEL: div32_minsize:
+; DIV32-NOT: divb
+ %div = sdiv i32 %a, %b
+ ret i32 %div
+}