[clang][ARM] Remove non-existent arm1136jz-s CPU
authorDavid Spickett <david.spickett@linaro.org>
Mon, 24 May 2021 13:33:08 +0000 (13:33 +0000)
committerDavid Spickett <david.spickett@linaro.org>
Tue, 25 May 2021 08:54:59 +0000 (08:54 +0000)
commit5f4d383a59351711d4f64cbb6a04ef9ffc0d8f88
treee3be4b9cccbb112112b0f572237f42936e0d7685
parent5017b0f88b81083d3f723e7a8e5cc19b1c4eb366
[clang][ARM] Remove non-existent arm1136jz-s CPU

There is an ARM1136JF-S and an ARM1136J-S but I could find
no references to an ARM1136JZ-S. In CPU manuals or the manual
for Arm Compiler 5.

See:
https://developer.arm.com/documentation/ddi0211/latest/
https://developer.arm.com/documentation/dui0472/latest/

Using this CPU you get:
$ ./bin/clang --target=arm-linux-gnueabihf -march=armv3m -mcpu=arm1136jz-s -c /tmp/test.c -o /tmp/test.o
'arm1136jz-s' is not a recognized processor for this target (ignoring processor)

Since the llvm target does not know what it is.

This is part of fixing https://bugs.llvm.org/show_bug.cgi?id=50454.

Reviewed By: peter.smith

Differential Revision: https://reviews.llvm.org/D103019
llvm/include/llvm/Support/ARMTargetParser.def
llvm/unittests/Support/TargetParserTest.cpp