[PATCH] D63099: [AArch64] Add more CPUs to host detection
Yi Kong via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 10 17:05:20 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL363013: [AArch64] Add more CPUs to host detection (authored by kongyi, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D63099?vs=203917&id=203941#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63099/new/
https://reviews.llvm.org/D63099
Files:
llvm/trunk/lib/Support/Host.cpp
Index: llvm/trunk/lib/Support/Host.cpp
===================================================================
--- llvm/trunk/lib/Support/Host.cpp
+++ llvm/trunk/lib/Support/Host.cpp
@@ -192,6 +192,8 @@
.Case("0xd07", "cortex-a57")
.Case("0xd08", "cortex-a72")
.Case("0xd09", "cortex-a73")
+ .Case("0xd0a", "cortex-a75")
+ .Case("0xd0b", "cortex-a76")
.Default("generic");
}
@@ -235,6 +237,10 @@
.Case("0x211", "kryo")
.Case("0x800", "cortex-a73")
.Case("0x801", "cortex-a73")
+ .Case("0x802", "cortex-a73")
+ .Case("0x803", "cortex-a73")
+ .Case("0x804", "cortex-a73")
+ .Case("0x805", "cortex-a73")
.Case("0xc00", "falkor")
.Case("0xc01", "saphira")
.Default("generic");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63099.203941.patch
Type: text/x-patch
Size: 870 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190611/4485a8df/attachment.bin>
More information about the llvm-commits
mailing list