This CPU definition is redundant and was recently removed from LLVM (see http://reviews.llvm.org/D6057)
This patch removes the remaining references to it from Clang.
Differential D6118
[ARM] Remove references to redundant cortex-a9-mp CPU • chatur01 on Nov 4 2014, 9:10 AM. Authored by
Details
This CPU definition is redundant and was recently removed from LLVM (see http://reviews.llvm.org/D6057) This patch removes the remaining references to it from Clang.
Diff Detail Event TimelineComment Actions I can't remember now, does that mean that "-mcpu=cortex-a9-mp" will work and mean "arm7tdmi" or will it fail with "unknown CPU"? I'm actually surprised that we had no tests for it. :) If it fails, LGTM. If not, the odd folks using it may have a nasty selection of compile/link/run-time errors. cheers, Comment Actions It does fail, $ clang -target arm-none-eabi -mcpu=cortex-a9-mp test.ll error: unknown target CPU 'cortex-a9-mp'
So was I! :) Thank you for reviewing, |