I would have that thought that these two function would produce the same code, but they do not.
Could someone care to explain the difference and which is preferred and why http://pastebin.com/GJ8YPfV3 function test1(x) y = 2.0 u = 2.320 x < 0 && (u = 32.0) x > 1 && (u = 1.0) return u + y end function test2(x) y = 2.0 u = 2.320 u = x < 0 ? 32.0 : u u = x > 1 ? 1.0 : u return u + y end @code_llvm test1(2.2) @code_llvm test2(2.2)
