From 17fd000f8226646a4fce72bd7368cfa86a004e7b Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Tue, 15 Nov 2016 21:18:18 +0000 Subject: [PATCH] [AArch64] Refactor test per Matthias' request. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287031 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/TargetParserTest.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/unittests/Support/TargetParserTest.cpp b/unittests/Support/TargetParserTest.cpp index 183bf1d3da0..751223aa4be 100644 --- a/unittests/Support/TargetParserTest.cpp +++ b/unittests/Support/TargetParserTest.cpp @@ -542,9 +542,15 @@ TEST(TargetParserTest, AArch64parseArchExt) { } TEST(TargetParserTest, AArch64parseCPUArch) { - const char *CPU[] = {"cortex-a35", "cortex-a53", "cortex-a57", - "cortex-a72", "cortex-a73", "cyclone", - "exynos-m1", "exynos-m2", "kryo", + const char *CPU[] = {"cortex-a35", + "cortex-a53", + "cortex-a57", + "cortex-a72", + "cortex-a73", + "cyclone", + "exynos-m1", + "exynos-m2", + "kryo", "vulcan"}; for (const auto &AArch64CPUName : kAArch64CPUNames) -- 2.40.0