GCC allows case-insensitive values for -mcpu, -march and -mtune options.
This patch implements the same behaviour for the -march option for ARM.
Details
Details
- Reviewers
rengolin richard.barton.arm
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Hi Gabor,
Does this fix the problems we were seeing in the ARM side? Was that because we're using StringRef's instead of std::string?
cheers,
--renato
Comment Actions
Hi Renato,
Does this fix the problems we were seeing in the ARM side? Was that because we're using StringRef's instead of std::string?
The problems in the ARM side were in the first version of the -mcpu patch, on the AArch64 code path.
This patch is the -march implementation without the AArch64 code path.
I'm still working on the AArch64 side of -mcpu and -march, trying to find a proper solution.
Thanks,
Gabor