diff options
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonPeephole.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonPeephole.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonPeephole.cpp b/llvm/lib/Target/Hexagon/HexagonPeephole.cpp index 354bb95e448..7f82a5c4c4d 100644 --- a/llvm/lib/Target/Hexagon/HexagonPeephole.cpp +++ b/llvm/lib/Target/Hexagon/HexagonPeephole.cpp @@ -20,19 +20,18 @@ // ... // %16<def> = NOT_p %15<kill> // ... -// JMP_c %16<kill>, <BB#1>, %pc<imp-def,dead> +// JMP_c %16<kill>, <%bb.1>, %pc<imp-def,dead> // // Into // %15<def> = CMPGTrr %6, %2; // ... -// JMP_cNot %15<kill>, <BB#1>, %pc<imp-def,dead>; +// JMP_cNot %15<kill>, <%bb.1>, %pc<imp-def,dead>; // // Note: The peephole pass makes the instrucstions like // %170<def> = SXTW %166 or %16<def> = NOT_p %15<kill> // redundant and relies on some form of dead removal instructions, like // DCE or DIE to actually eliminate them. - //===----------------------------------------------------------------------===// #include "Hexagon.h" |