﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4035	Inefficient Code for 'or'	Vitalij Ruge	somebody	"for the following example
{{{#!modelica
  y = if f1(x) < 0 or f2(x) < 0 or f3(x) < 0 then ... else ...;
}}}
we create
{{{ #!C
  tmp1 = f1(x) < 0;
  tmp2 = f2(x) < 0;
  tmp3 = f3(x) < 0;
  y = (tmp1 || tmp2) || tmp3 ? .... : ....;
}}}
where `tmp2` and `tmp3` possible never used"	defect	closed	normal	never	Code Generation		worksforme		
