diff options
author | Ben Shi <powerman1st@163.com> | 2023-03-01 18:23:52 +0800 |
---|---|---|
committer | Ben Shi <powerman1st@163.com> | 2023-03-01 21:19:06 +0800 |
commit | 0d2541827322a62bdf75ffb6240041843a9013f6 (patch) | |
tree | e42e5d4fecf875ad3fcece04e6a700ef173706c1 /llvm/lib/CodeGen/DFAPacketizer.cpp | |
parent | 7c081a5675cae9f083e3c34ec27a89ad3fcc9d3b (diff) | |
download | llvm-0d2541827322a62bdf75ffb6240041843a9013f6.zip llvm-0d2541827322a62bdf75ffb6240041843a9013f6.tar.gz llvm-0d2541827322a62bdf75ffb6240041843a9013f6.tar.bz2 |
[NFC] Fix incorrect comment in VLIW packetizer
Reviewed By: bcain
Differential Revision: https://reviews.llvm.org/D145050
Diffstat (limited to 'llvm/lib/CodeGen/DFAPacketizer.cpp')
-rw-r--r-- | llvm/lib/CodeGen/DFAPacketizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DFAPacketizer.cpp b/llvm/lib/CodeGen/DFAPacketizer.cpp index cf02918b9..02ed6f9 100644 --- a/llvm/lib/CodeGen/DFAPacketizer.cpp +++ b/llvm/lib/CodeGen/DFAPacketizer.cpp @@ -234,7 +234,7 @@ void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB, "added to packet\n " << MI); // End the packet if resource is not available, or if the instruction - // shoud not be added to the current packet. + // should not be added to the current packet. endPacket(MBB, MI); } |