Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 69c4170

Browse files
committed
Fix the dump of LIR flags
1 parent f55e568 commit 69c4170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jit/lir.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1767,6 +1767,6 @@ void LIR::InsertBeforeTerminator(BasicBlock* block, LIR::Range&& range)
17671767
#ifdef DEBUG
17681768
void GenTree::dumpLIRFlags()
17691769
{
1770-
JITDUMP("[%c%c%c]", IsUnusedValue() ? 'U' : '-', IsRegOptional() ? 'O' : '-');
1770+
JITDUMP("[%c%c]", IsUnusedValue() ? 'U' : '-', IsRegOptional() ? 'O' : '-');
17711771
}
17721772
#endif

0 commit comments

Comments
 (0)