diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-12-12 01:33:47 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-12-12 01:33:47 +0000 |
commit | 6798a04b15b0455b6cdc79fb7d52079322bf26b5 (patch) | |
tree | dc6bbdcd14a4afccf53162466599df0cfa3eac6b /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | c3d1aca657a1cf90858a493e783c15310f53b011 (diff) | |
download | bcm5719-llvm-6798a04b15b0455b6cdc79fb7d52079322bf26b5.tar.gz bcm5719-llvm-6798a04b15b0455b6cdc79fb7d52079322bf26b5.zip |
Fix the ascii drawing that was ruined when I split the H and CPP
llvm-svn: 169955
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 5c5e9af3b12..da073c5e599 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -404,27 +404,27 @@ InnerLoopVectorizer::createEmptyLoop(LoopVectorizationLegality *Legal) { the vectorized instructions while the old loop will continue to run the scalar remainder. - [ ] <-- vector loop bypass. - / | - / v + [ ] <-- vector loop bypass. + / | + / v | [ ] <-- vector pre header. | | | v | [ ] \ | [ ]_| <-- vector loop. | | - \ v - >[ ] <--- middle-block. - / | - / v + \ v + >[ ] <--- middle-block. + / | + / v | [ ] <--- new preheader. | | | v | [ ] \ | [ ]_| <-- old scalar loop to handle remainder. - \ | - \ v - >[ ] <-- exit block. + \ | + \ v + >[ ] <-- exit block. ... */ |