[PATCH] D20906: [mips] EABI CodeGen is completely untested. Remove it.
Simon Dardis via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 2 08:11:26 PDT 2016
sdardis added a comment.
LGTM.
I think it's already bitrotted, as a simple test program has crashed during LowerFormalArguments (I reverted your corresponding clang patch locally) to test it quickly. If it can't compile:
extern int g(int);
extern int k;
int f (int a, int b) {
return g(a) + g(b) + g(k);
}
and there's no outstanding bug reports we may as well remove it altogether. We can bring it back if there's interest/requests for it.
http://reviews.llvm.org/D20906
More information about the llvm-commits
mailing list