[PATCH] D30317: [X86] Clean up test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
Jorge Gorbe via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 23 17:22:44 PST 2017
jgorbe created this revision.
- Migrated from grep to FileCheck.
- Re-indented, removed boilerplate comments.
- Added 'entry' label at beginning of basic block.
https://reviews.llvm.org/D30317
Files:
test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
Index: test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
===================================================================
--- test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
+++ test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
@@ -1,12 +1,16 @@
-; RUN: llc < %s -march=x86 | not grep "subl.*%esp"
+; RUN: llc < %s -march=x86 | FileCheck %s
+
+target triple = "i686-unknown-unknown"
define i32 @f(i32 %a, i32 %b) {
- %tmp.2 = mul i32 %a, %a ; <i32> [#uses=1]
- %tmp.5 = shl i32 %a, 1 ; <i32> [#uses=1]
- %tmp.6 = mul i32 %tmp.5, %b ; <i32> [#uses=1]
- %tmp.10 = mul i32 %b, %b ; <i32> [#uses=1]
- %tmp.7 = add i32 %tmp.10, %tmp.2 ; <i32> [#uses=1]
- %tmp.11 = add i32 %tmp.7, %tmp.6 ; <i32> [#uses=1]
- ret i32 %tmp.11
+entry:
+ %tmp.2 = mul i32 %a, %a
+ %tmp.5 = shl i32 %a, 1
+ %tmp.6 = mul i32 %tmp.5, %b
+ %tmp.10 = mul i32 %b, %b
+ %tmp.7 = add i32 %tmp.10, %tmp.2
+ %tmp.11 = add i32 %tmp.7, %tmp.6
+ ret i32 %tmp.11
+; CHECK-NOT: subl %esp
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D30317.89591.patch
Type: text/x-patch
Size: 1075 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170224/df64ef8c/attachment.bin>
More information about the llvm-commits
mailing list