[llvm] r371516 - [BreakFalseDeps] fix typos/grammar in documentation comment; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 10 06:00:31 PDT 2019
Author: spatel
Date: Tue Sep 10 06:00:31 2019
New Revision: 371516
URL: http://llvm.org/viewvc/llvm-project?rev=371516&view=rev
Log:
[BreakFalseDeps] fix typos/grammar in documentation comment; NFC
Modified:
llvm/trunk/lib/CodeGen/BreakFalseDeps.cpp
Modified: llvm/trunk/lib/CodeGen/BreakFalseDeps.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/BreakFalseDeps.cpp?rev=371516&r1=371515&r2=371516&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/BreakFalseDeps.cpp (original)
+++ llvm/trunk/lib/CodeGen/BreakFalseDeps.cpp Tue Sep 10 06:00:31 2019
@@ -9,12 +9,11 @@
/// \file Break False Dependency pass.
///
/// Some instructions have false dependencies which cause unnecessary stalls.
-/// For exmaple, instructions that only write part of a register, and implicitly
-/// need to read the other parts of the register. This may cause unwanted
+/// For example, instructions may write part of a register and implicitly
+/// need to read the other parts of the register. This may cause unwanted
/// stalls preventing otherwise unrelated instructions from executing in
/// parallel in an out-of-order CPU.
-/// This pass is aimed at identifying and avoiding these depepndencies when
-/// possible.
+/// This pass is aimed at identifying and avoiding these dependencies.
//
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list