[llvm-commits] [PATCH] Mips backend. Lower BlockAddress when relocation-model is static.

Chris Lattner clattner at apple.com
Sat Apr 16 09:06:34 PDT 2011


On Apr 15, 2011, at 5:11 PM, Akira Hatanaka wrote:

> This patch lowers BlockAddress node when relocation-model is static.

Looks fine to me.  One minor coding style thing, please don't use "else after return".  Use:

if (..){
 ...
  return ..
}

foo()

instead of "else foo()"

Thanks!

-Chris



More information about the llvm-commits mailing list