mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-20 18:59:02 +02:00
Cleanup: Avoid signed/unsigned comparisons.
The ones ones left are for DMD-defined constants.
This commit is contained in:
@@ -319,7 +319,7 @@ assert(0 && "asm fixme Arg_LocalSize");
|
||||
// FIXME
|
||||
// if (! irs->func->naked) {
|
||||
assert(asmparser);
|
||||
for (int i = 0; i < code->regs.size(); i++) {
|
||||
for (size_t i = 0; i < code->regs.size(); i++) {
|
||||
if (code->regs[i]) {
|
||||
clobbers.push_back(asmparser->getRegName(i));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user