We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab578f7 commit 9dd3f74Copy full SHA for 9dd3f74
1 file changed
src/frontc/cabs2cil.ml
@@ -5253,7 +5253,7 @@ and doCondExp (asconst: bool) (* Try to evaluate the conditional expression
5253
| _ ->
5254
let (se, e, t) = doExp ~asconst e (AExp None) in
5255
ignore (checkBool t e);
5256
- CEExp (se, if !lowerConstants then constFold asconst e else e)
+ CEExp (se, if !lowerConstants then constFold asconst e else e) (* TODO: Why is asconst used as machdep? *)
5257
5258
and compileCondExp (asconst:bool) (ce: condExpRes) (st: chunk) (sf: chunk) : chunk =
5259
match ce with
0 commit comments