Skip to content

Commit df6a958

Browse files
committed
[BreakFalseDeps] fix typos/grammar in documentation comment; NFC
llvm-svn: 371516
1 parent 5d26959 commit df6a958

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/CodeGen/BreakFalseDeps.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@
99
/// \file Break False Dependency pass.
1010
///
1111
/// Some instructions have false dependencies which cause unnecessary stalls.
12-
/// For exmaple, instructions that only write part of a register, and implicitly
13-
/// need to read the other parts of the register. This may cause unwanted
12+
/// For example, instructions may write part of a register and implicitly
13+
/// need to read the other parts of the register. This may cause unwanted
1414
/// stalls preventing otherwise unrelated instructions from executing in
1515
/// parallel in an out-of-order CPU.
16-
/// This pass is aimed at identifying and avoiding these depepndencies when
17-
/// possible.
16+
/// This pass is aimed at identifying and avoiding these dependencies.
1817
//
1918
//===----------------------------------------------------------------------===//
2019

0 commit comments

Comments
 (0)