diff options
author | 2024-01-24 16:34:09 +0900 | |
---|---|---|
committer | 2024-01-25 08:11:38 +0000 | |
commit | f07ec3262629d15088c29e8182fd614a04f8afd3 (patch) | |
tree | 0579f8a90ee76984dc8dd2538042be3800c6ea68 /runtime | |
parent | 3fad342f6699643706102d8ae9edfc942ab526fc (diff) |
Rename arch variant goldmont-without-xsaves to goldmont-without-sha-xsaves
Bug: 314243939
Test: Build an image with TARGET_ARCH_VARIANT:=goldmont-without-sha-xsaves
Change-Id: I42576769ddfd5f797685413f4eb5393a044f2086
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/arch/x86/instruction_set_features_x86.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/arch/x86/instruction_set_features_x86.cc b/runtime/arch/x86/instruction_set_features_x86.cc index 7036ad12d5..3f9978d942 100644 --- a/runtime/arch/x86/instruction_set_features_x86.cc +++ b/runtime/arch/x86/instruction_set_features_x86.cc @@ -46,7 +46,7 @@ static constexpr const char* x86_known_variants[] = { "silvermont", "goldmont", "goldmont-plus", - "goldmont-without-xsaves", + "goldmont-without-sha-xsaves", "tremont", "kabylake", "default", @@ -58,7 +58,7 @@ static constexpr const char* x86_variants_with_ssse3[] = { "silvermont", "goldmont", "goldmont-plus", - "goldmont-without-xsaves", + "goldmont-without-sha-xsaves", "tremont", "kabylake", }; @@ -68,7 +68,7 @@ static constexpr const char* x86_variants_with_sse4_1[] = { "silvermont", "goldmont", "goldmont-plus", - "goldmont-without-xsaves", + "goldmont-without-sha-xsaves", "tremont", "kabylake", }; @@ -78,7 +78,7 @@ static constexpr const char* x86_variants_with_sse4_2[] = { "silvermont", "goldmont", "goldmont-plus", - "goldmont-without-xsaves", + "goldmont-without-sha-xsaves", "tremont", "kabylake", }; @@ -88,7 +88,7 @@ static constexpr const char* x86_variants_with_popcnt[] = { "silvermont", "goldmont", "goldmont-plus", - "goldmont-without-xsaves", + "goldmont-without-sha-xsaves", "tremont", "kabylake", }; |