Fix the ascii drawing that was ruined when I split the H and CPP

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169955 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nadav Rotem 2012-12-12 01:33:47 +00:00
parent 7d34267df6
commit db65ff39fa

View File

@ -404,27 +404,27 @@ InnerLoopVectorizer::createEmptyLoop(LoopVectorizationLegality *Legal) {
the vectorized instructions while the old loop will continue to run the the vectorized instructions while the old loop will continue to run the
scalar remainder. scalar remainder.
[ ] <-- vector loop bypass. [ ] <-- vector loop bypass.
/ | / |
/ v / v
| [ ] <-- vector pre header. | [ ] <-- vector pre header.
| | | |
| v | v
| [ ] \ | [ ] \
| [ ]_| <-- vector loop. | [ ]_| <-- vector loop.
| | | |
\ v \ v
>[ ] <--- middle-block. >[ ] <--- middle-block.
/ | / |
/ v / v
| [ ] <--- new preheader. | [ ] <--- new preheader.
| | | |
| v | v
| [ ] \ | [ ] \
| [ ]_| <-- old scalar loop to handle remainder. | [ ]_| <-- old scalar loop to handle remainder.
\ | \ |
\ v \ v
>[ ] <-- exit block. >[ ] <-- exit block.
... ...
*/ */