diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-09 05:54:44 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-09 05:54:44 +0000 |
commit | 713b5ba2deca425f8178f2ab35828be19c83a72d (patch) | |
tree | cc74cc6f1babde373c287be72fb3ab71f4c1c9fa /llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp | |
parent | bd9c29039e390189cacbc28d81214c5e10b90017 (diff) | |
download | bcm5719-llvm-713b5ba2deca425f8178f2ab35828be19c83a72d.tar.gz bcm5719-llvm-713b5ba2deca425f8178f2ab35828be19c83a72d.zip |
fix trivial typos; NFC
sucessor -> successor
llvm-svn: 307488
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp index 1691808d05a..700111743ee 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp @@ -132,7 +132,7 @@ static void SortBlocks(MachineFunction &MF, const MachineLoopInfo &MLI, // no blocks not dominated by the loop header. // - It's desirable to preserve the original block order when possible. // We use two ready lists; Preferred and Ready. Preferred has recently - // processed sucessors, to help preserve block sequences from the original + // processed successors, to help preserve block sequences from the original // order. Ready has the remaining ready blocks. PriorityQueue<MachineBasicBlock *, std::vector<MachineBasicBlock *>, CompareBlockNumbers> |