diff options
author | Quentin Colombet <qcolombet@apple.com> | 2017-04-01 01:26:24 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2017-04-01 01:26:24 +0000 |
commit | 49d70d0529ab6d98a2c0a7c9aa65e9d1a92c2e4d (patch) | |
tree | f60fa846f9aa4e95dd6d1adce48369dff93f7c0c /llvm/test/CodeGen/Generic | |
parent | fc8f048c13d9dc1ab1ddc1550cfcbd3f5118fe23 (diff) | |
download | bcm5719-llvm-49d70d0529ab6d98a2c0a7c9aa65e9d1a92c2e4d.tar.gz bcm5719-llvm-49d70d0529ab6d98a2c0a7c9aa65e9d1a92c2e4d.zip |
Revert "Feature generic option to setup start/stop-after/before"
This reverts commit r299282.
Didn't intend to commit this :(
llvm-svn: 299288
Diffstat (limited to 'llvm/test/CodeGen/Generic')
-rw-r--r-- | llvm/test/CodeGen/Generic/llc-start-stop.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/Generic/llc-start-stop.ll b/llvm/test/CodeGen/Generic/llc-start-stop.ll index b9773c2c3e5..7508f94c50a 100644 --- a/llvm/test/CodeGen/Generic/llc-start-stop.ll +++ b/llvm/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 |