You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int main(){
#define N 9
int A[N];
int i;
int tmp;
int c = 5;
int sum = 0;
for(i = 0; i < N; i++) {
A[i] = i;
}
for (i = 0; i < N; i++) {
//DFGLoop: loop
tmp = A[i] * c;
if (tmp > 5) {
sum = tmp + sum;
}
}
return sum;
}
The DFG gen fails with Unhandled case for operand setting, and I have done some debugging; it is due to operandTypeFor not handling the SELECT instruction.
The text was updated successfully, but these errors were encountered:
I am trying to run the following benchmark:
The DFG gen fails with
Unhandled case for operand setting
, and I have done some debugging; it is due tooperandTypeFor
not handling theSELECT
instruction.The text was updated successfully, but these errors were encountered: