diff options
author | Clement Courbet <courbet@google.com> | 2018-03-19 13:37:04 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-03-19 13:37:04 +0000 |
commit | 6d047b70a42146287d3e6e66820010abffd4439f (patch) | |
tree | 3ea18f4997366d950c990a6d5a298f7af7a060ec /llvm/test/CodeGen/Generic | |
parent | d16037d9bbe27639add9fb48b993b2048d2d1031 (diff) | |
download | bcm5719-llvm-6d047b70a42146287d3e6e66820010abffd4439f.tar.gz bcm5719-llvm-6d047b70a42146287d3e6e66820010abffd4439f.zip |
[MergeICmps] Re-land 324317 "Enable the MergeICmps Pass by default."
Now that PR36557 is fixed.
llvm-svn: 327840
Diffstat (limited to 'llvm/test/CodeGen/Generic')
-rw-r--r-- | llvm/test/CodeGen/Generic/llc-start-stop.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Generic/llc-start-stop.ll b/llvm/test/CodeGen/Generic/llc-start-stop.ll index 9056e2cab49..9f5e75a86dc 100644 --- a/llvm/test/CodeGen/Generic/llc-start-stop.ll +++ b/llvm/test/CodeGen/Generic/llc-start-stop.ll @@ -13,15 +13,15 @@ ; STOP-BEFORE-NOT: Loop Strength Reduction ; RUN: llc < %s -debug-pass=Structure -start-after=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=START-AFTER -; START-AFTER: -machine-branch-prob -expandmemcmp +; START-AFTER: -machine-branch-prob -mergeicmps ; START-AFTER: FunctionPass Manager -; START-AFTER-NEXT: Expand memcmp() to load/stores +; START-AFTER-NEXT: Merge contiguous icmps into a memcmp ; RUN: llc < %s -debug-pass=Structure -start-before=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=START-BEFORE ; START-BEFORE: -machine-branch-prob -domtree ; START-BEFORE: FunctionPass Manager ; START-BEFORE: Loop Strength Reduction -; START-BEFORE-NEXT: Expand memcmp() to load/stores +; START-BEFORE-NEXT: Merge contiguous icmps into a memcmp ; RUN: not llc < %s -start-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-START-BEFORE ; RUN: not llc < %s -stop-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-STOP-BEFORE |