mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
[X86] Place parentheses around "isMask_32(STReturns) && N <= 2".
This corrects r214672, which was committed to silence a gcc warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214732 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -946,7 +946,7 @@ void FPS::handleCall(MachineBasicBlock::iterator &I) {
|
|||||||
|
|
||||||
// FP registers used for function return must be consecutive starting at
|
// FP registers used for function return must be consecutive starting at
|
||||||
// FP0.
|
// FP0.
|
||||||
assert((STReturns == 0 || isMask_32(STReturns)) && N <= 2);
|
assert(STReturns == 0 || (isMask_32(STReturns) && N <= 2));
|
||||||
|
|
||||||
for (unsigned I = 0; I < N; ++I)
|
for (unsigned I = 0; I < N; ++I)
|
||||||
pushReg(N - I - 1);
|
pushReg(N - I - 1);
|
||||||
|
Reference in New Issue
Block a user