diff options
| author | Quentin Colombet <quentin.colombet@gmail.com> | 2019-04-29 16:14:00 +0000 |
|---|---|---|
| committer | Quentin Colombet <quentin.colombet@gmail.com> | 2019-04-29 16:14:00 +0000 |
| commit | ae2cbb34007d20c1a4e0e0bf0c9408b2df238eea (patch) | |
| tree | 1342684cb9080acbc9542fb853f11497772fd181 /llvm/test/Transforms/BlockExtractor | |
| parent | a25c928302197fe2be937d015c1d09b6d006718a (diff) | |
| download | bcm5719-llvm-ae2cbb34007d20c1a4e0e0bf0c9408b2df238eea.tar.gz bcm5719-llvm-ae2cbb34007d20c1a4e0e0bf0c9408b2df238eea.zip | |
[BlockExtractor] Change the basic block separator from ',' to ';'
This change aims at making the file format be compatible with the
way LLVM handles command line options.
Differential Revision: https://reviews.llvm.org/D60970
llvm-svn: 359462
Diffstat (limited to 'llvm/test/Transforms/BlockExtractor')
| -rw-r--r-- | llvm/test/Transforms/BlockExtractor/extract-blocks-with-groups.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/BlockExtractor/extract-blocks-with-groups.ll b/llvm/test/Transforms/BlockExtractor/extract-blocks-with-groups.ll index 0c5b173c1bf..d23c3f40d7c 100644 --- a/llvm/test/Transforms/BlockExtractor/extract-blocks-with-groups.ll +++ b/llvm/test/Transforms/BlockExtractor/extract-blocks-with-groups.ll @@ -1,8 +1,8 @@ ; Extract the 'if', 'then', and 'else' blocks into the same function. -; RUN: echo 'foo if,then,else' > %t +; RUN: echo 'foo if;then;else' > %t ; Make sure we can still extract a single basic block ; RUN: echo 'foo end' >> %t -; RUN: echo 'bar bb14,bb20' >> %t +; RUN: echo 'bar bb14;bb20' >> %t ; RUN: opt -S -extract-blocks -extract-blocks-file=%t %s | FileCheck %s ; CHECK-LABEL: foo |

