summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic
diff options
context:
space:
mode:
authorQuentin Colombet <qcolombet@apple.com>2017-04-01 01:26:24 +0000
committerQuentin Colombet <qcolombet@apple.com>2017-04-01 01:26:24 +0000
commit2a400a79a23eb72635208c3ac75781bc25058592 (patch)
treed66e7c375cbeddcf1b5f34fc1706b7bfd40c6f84 /test/CodeGen/Generic
parentb6fca8cdd3167b73335032176649cdca306c6f06 (diff)
Revert "Feature generic option to setup start/stop-after/before"
This reverts commit r299282. Didn't intend to commit this :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic')
-rw-r--r--test/CodeGen/Generic/llc-start-stop.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/Generic/llc-start-stop.ll b/test/CodeGen/Generic/llc-start-stop.ll
index b9773c2c3e5..7508f94c50a 100644
--- a/test/CodeGen/Generic/llc-start-stop.ll
+++ b/test/CodeGen/Generic/llc-start-stop.ll
@@ -24,10 +24,10 @@
; RUN: not llc < %s -stop-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-STOP-BEFORE
; RUN: not llc < %s -start-after=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-START-AFTER
; RUN: not llc < %s -stop-after=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-STOP-AFTER
-; NONEXISTENT-START-BEFORE: "nonexistent" pass is not registered.
-; NONEXISTENT-STOP-BEFORE: "nonexistent" pass is not registered.
-; NONEXISTENT-START-AFTER: "nonexistent" pass is not registered.
-; NONEXISTENT-STOP-AFTER: "nonexistent" pass is not registered.
+; NONEXISTENT-START-BEFORE: start-before pass is not registered.
+; NONEXISTENT-STOP-BEFORE: stop-before pass is not registered.
+; NONEXISTENT-START-AFTER: start-after pass is not registered.
+; NONEXISTENT-STOP-AFTER: stop-after pass is not registered.
; RUN: not llc < %s -start-before=loop-reduce -start-after=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=DOUBLE-START
; RUN: not llc < %s -stop-before=loop-reduce -stop-after=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=DOUBLE-STOP