summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/udiv_select_to_select_shift.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-25 15:38:29 +0000
committerDan Gohman <gohman@apple.com>2009-08-25 15:38:29 +0000
commitfea1dd08044c85fb2f74b409704bb742dc817846 (patch)
treed74811fd5c8366813b3931db99b3767c1eefeb7c /test/Transforms/InstCombine/udiv_select_to_select_shift.ll
parentbaa26395ccf17fc988bb9cf62d6659ca8415ece9 (diff)
downloadllvm-fea1dd08044c85fb2f74b409704bb742dc817846.tar.gz
llvm-fea1dd08044c85fb2f74b409704bb742dc817846.tar.bz2
llvm-fea1dd08044c85fb2f74b409704bb742dc817846.tar.xz
Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/udiv_select_to_select_shift.ll')
-rw-r--r--test/Transforms/InstCombine/udiv_select_to_select_shift.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/udiv_select_to_select_shift.ll b/test/Transforms/InstCombine/udiv_select_to_select_shift.ll
index 614ae3dc97..5594e277ee 100644
--- a/test/Transforms/InstCombine/udiv_select_to_select_shift.ll
+++ b/test/Transforms/InstCombine/udiv_select_to_select_shift.ll
@@ -1,7 +1,7 @@
; Test that this transform works:
; udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
;
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis -f -o %t
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis -o %t
; RUN: not grep select %t
; RUN: grep lshr %t | count 2
; RUN: not grep udiv %t