diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2019-09-20 23:06:03 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2019-09-20 23:06:03 +0000 |
commit | 48b40834dc59ec1d02f59b1c36360b12c58b3c7b (patch) | |
tree | dc4363e6dfae8d3118e37bb6d9af68f411879654 /clang/test/Misc/target-invalid-cpu-note.c | |
parent | 819c1651f723b51490eb98b3fc11cbd7dafc7831 (diff) | |
download | bcm5719-llvm-48b40834dc59ec1d02f59b1c36360b12c58b3c7b.tar.gz bcm5719-llvm-48b40834dc59ec1d02f59b1c36360b12c58b3c7b.zip |
[SystemZ] Support z15 processor name
The recently announced IBM z15 processor implements the architecture
already supported as "arch13" in LLVM. This patch adds support for
"z15" as an alternate architecture name for arch13.
Corrsponding LLVM support was committed as rev. 372435.
llvm-svn: 372436
Diffstat (limited to 'clang/test/Misc/target-invalid-cpu-note.c')
-rw-r--r-- | clang/test/Misc/target-invalid-cpu-note.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/target-invalid-cpu-note.c b/clang/test/Misc/target-invalid-cpu-note.c index e7dc6ed478b..4f8158e5022 100644 --- a/clang/test/Misc/target-invalid-cpu-note.c +++ b/clang/test/Misc/target-invalid-cpu-note.c @@ -60,7 +60,7 @@ // RUN: not %clang_cc1 -triple systemz--- -target-cpu not-a-cpu -fsyntax-only %s 2>&1 | FileCheck %s --check-prefix SYSTEMZ // SYSTEMZ: error: unknown target CPU 'not-a-cpu' // SYSTEMZ: note: valid target CPU values are: arch8, z10, arch9, z196, arch10, -// SYSTEMZ-SAME: zEC12, arch11, z13, arch12, z14, arch13 +// SYSTEMZ-SAME: zEC12, arch11, z13, arch12, z14, arch13, z15 // RUN: not %clang_cc1 -triple sparc--- -target-cpu not-a-cpu -fsyntax-only %s 2>&1 | FileCheck %s --check-prefix SPARC // SPARC: error: unknown target CPU 'not-a-cpu' |