diff options
author | Dylan McKay <me@dylanmckay.io> | 2017-07-05 00:41:19 +0000 |
---|---|---|
committer | Dylan McKay <me@dylanmckay.io> | 2017-07-05 00:41:19 +0000 |
commit | f115c7f917ca8524f5cb5b6c746767fc9648c02d (patch) | |
tree | 9873a1867dd9e7ce0a5a186904dac61f1ee1ee08 /llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll | |
parent | 689426e3cb285bfc86745d01bc47b72b98337a99 (diff) | |
download | bcm5719-llvm-f115c7f917ca8524f5cb5b6c746767fc9648c02d.tar.gz bcm5719-llvm-f115c7f917ca8524f5cb5b6c746767fc9648c02d.zip |
[AVR] Add the branch selection pass from the GitHub repository
We should rewrite this using the generic branch relaxation pass, but for
the moment having this pass is better than hitting an assertion error.
llvm-svn: 307109
Diffstat (limited to 'llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll')
-rw-r--r-- | llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll b/llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll index ca7ec1ab831..aca9502b5df 100644 --- a/llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll +++ b/llvm/test/CodeGen/AVR/select-mbb-placement-bug.ll @@ -8,9 +8,9 @@ define internal fastcc void @loopy() { ; ; https://github.com/avr-rust/rust/issues/49 -; CHECK: LBB0_1: -; CHECK: LBB0_2: -; CHECK-NOT: LBB0_3: +; CHECK: LBB0_{{[0-9]+}}: +; CHECK: LBB0_{{[0-9]+}}: +; CHECK-NOT: LBB0_{{[0-9]+}}: start: br label %bb7.preheader |