Skip to content

Commit b9d27ac

Browse files
committed
[MC] Fix formatting of a comment
1 parent c72f795 commit b9d27ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/MC/MCExpr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ bool MCExpr::evaluateAsAbsolute(int64_t &Res, const MCAssembler *Asm,
286286
}
287287

288288
bool IsRelocatable = evaluateAsRelocatableImpl(Value, Asm, Addrs, InSet);
289-
Res = Value.getConstant(); // Value with RefKind (e.g. %hi(0xdeadbeef) in
290-
// MIPS) is not considered
289+
Res = Value.getConstant();
290+
// Value with RefKind (e.g. %hi(0xdeadbeef) in MIPS) is not considered
291291
// absolute (the value is unknown at parse time), even if it might be resolved
292292
// by evaluateFixup.
293293
return IsRelocatable && Value.isAbsolute() && Value.getRefKind() == 0;

0 commit comments

Comments
 (0)