commit | 9464d8c49813aba77285e7465b96e92a91ed327c | [log] [tgz] |
---|---|---|
author | Jason Ekstrand <jason.ekstrand@intel.com> | Tue Apr 26 20:26:42 2016 -0700 |
committer | Jason Ekstrand <jason.ekstrand@intel.com> | Thu Apr 28 15:54:48 2016 -0700 |
tree | e39fa6395b6e5fd1eba81fb1520cf047c91cd5f2 | |
parent | e63766fb4b54bc88756ee7e82c3ff8cec0dc5561 [diff] |
nir: Switch the arguments to nir_foreach_function This matches the "foreach x in container" pattern found in many other programming languages. Generated by the following regular expression: s/nir_foreach_function(\([^,]*\),\s*\([^,]*\))/nir_foreach_function(\2, \1)/ Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>