ableC icon indicating copy to clipboard operation
ableC copied to clipboard

Missing constant analysis

Open krame505 opened this issue 10 years ago • 0 comments

In some cases where a constant is required, ableC will allow non-constants. For example:

int f() {
  return 4;
}

int x = f();

is accepted and translated by ableC, but it does not compile with gcc.

krame505 avatar Jun 16 '15 21:06 krame505