commit | ebfdd97a10e34a5e70eadfc21ebfc033ef93a563 | [log] [tgz] |
---|---|---|
author | Herbert Xu <herbert@gondor.apana.org.au> | Mon Oct 06 19:45:58 2014 +0800 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Mon Oct 06 19:45:58 2014 +0800 |
tree | 3fc0164b796a104b850b40a871304e507edd3fc6 | |
parent | da30b4b787695fbf77e5d941ff350a66ca572bcb [diff] |
[BUILTIN] Do not allow break to break across function calls As it is if you do a multi-level break inside a function it'll actually include loops outside of the function call. This is counterintuitive. This patch changes this by saving and resetting loopnest when entering a function. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>