mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Fix typos in comments, NFC
Summary: Just fixing comments, no functional change. Test Plan: N/A Reviewers: jfb Subscribers: mcrosier, llvm-commits Differential Revision: http://reviews.llvm.org/D5130 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216784 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -261,7 +261,7 @@ void DIEHash::hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag,
|
||||
return;
|
||||
}
|
||||
|
||||
// otherwise, b) use the letter 'T' as a the marker, ...
|
||||
// otherwise, b) use the letter 'T' as the marker, ...
|
||||
addULEB128('T');
|
||||
|
||||
addULEB128(Attribute);
|
||||
|
@ -228,7 +228,7 @@ void StackColoring::dump() const {
|
||||
unsigned StackColoring::collectMarkers(unsigned NumSlot) {
|
||||
unsigned MarkersFound = 0;
|
||||
// Scan the function to find all lifetime markers.
|
||||
// NOTE: We use the a reverse-post-order iteration to ensure that we obtain a
|
||||
// NOTE: We use a reverse-post-order iteration to ensure that we obtain a
|
||||
// deterministic numbering, and because we'll need a post-order iteration
|
||||
// later for solving the liveness dataflow problem.
|
||||
for (MachineBasicBlock *MBB : depth_first(MF)) {
|
||||
|
Reference in New Issue
Block a user