mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
Fix warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71834 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -791,7 +791,7 @@ static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
|
|||||||
assert(0 && "No typed variable for !foreach");
|
assert(0 && "No typed variable for !foreach");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (MHSd && DagType || MHSl && ListType) {
|
if ((MHSd && DagType) || (MHSl && ListType)) {
|
||||||
if (MHSd) {
|
if (MHSd) {
|
||||||
Init *Val = MHSd->getOperator();
|
Init *Val = MHSd->getOperator();
|
||||||
Init *Result = EvaluateOperation(RHSo, LHS, Val,
|
Init *Result = EvaluateOperation(RHSo, LHS, Val,
|
||||||
|
Reference in New Issue
Block a user