glsl: fix stale comment
authorConnor Abbott <cwabbott0@gmail.com>
Wed, 17 Dec 2014 03:32:21 +0000 (22:32 -0500)
committerConnor Abbott <cwabbott0@gmail.com>
Fri, 23 Jan 2015 05:23:51 +0000 (00:23 -0500)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Signed-off-by: Connor Abbott <cwabbott0@gmail.com>
src/glsl/ir_function_can_inline.cpp

index 7b15d5df178de0306fcc0afad6b395395d7b66be..3b1d15f80fcc92028d966d7bbca150fd9de23734 100644 (file)
  *
  * Determines if we can inline a function call using ir_function_inlining.cpp.
  *
- * The primary restriction is that we can't return from the function
- * other than as the last instruction.  We could potentially work
- * around this for some constructs by flattening control flow and
- * moving the return to the end, or by using breaks from a do {} while
- * (0) loop surrounding the function body.
+ * The primary restriction is that we can't return from the function other
+ * than as the last instruction.  In lower_jumps.cpp, we can lower return
+ * statements not at the end of the function to other control flow in order to
+ * deal with this restriction.
  */
 
 #include "ir.h"