[PATCH] D22301: Don't ignore MCTargetOptions::ABIName on targets that currently do so.
Daniel Sanders via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 13 06:01:09 PDT 2016
dsanders added a comment.
Before this patch, the camps were:
- Targets that pass ABI information in both the triple and MCTargetOptions (ARM/PowerPC)
- Targets that pass ABI information in the triple only (Mips/X86/everyone-else)
At this point the camps are:
- Targets that pass ABI information in both the triple and MCTargetOptions (ARM/PowerPC/X86/everyone-else)
- As noted in the description, X86 is in this camp on a technicality. Let me know if you want me to do more to X86
- Targets that pass ABI information in the triple only (Mips)
The next two patches (one clang, one llvm) should finish the unification of the two camps.
http://reviews.llvm.org/D22301
More information about the llvm-commits
mailing list