File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 9
9
// / \file Break False Dependency pass.
10
10
// /
11
11
// / 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
14
14
// / stalls preventing otherwise unrelated instructions from executing in
15
15
// / 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.
18
17
//
19
18
// ===----------------------------------------------------------------------===//
20
19
You can’t perform that action at this time.
0 commit comments