summary refs log tree commit diff stats
path: root/linux-user/alpha/target_elf.h
diff options
context:
space:
mode:
authorGavin Shan <gshan@redhat.com>2023-11-15 09:55:58 +1000
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-01-05 16:20:14 +0100
commit9c115f68e2d27a7aea71e4956689a091fad1ba64 (patch)
tree5dd1db356acfbfcb8fc48516067d6a5b16dbdbe7 /linux-user/alpha/target_elf.h
parentbf964322d643f03650806c33a951fc7d74649190 (diff)
downloadfocaccia-qemu-9c115f68e2d27a7aea71e4956689a091fad1ba64.tar.gz
focaccia-qemu-9c115f68e2d27a7aea71e4956689a091fad1ba64.zip
target/alpha: Remove fallback to ev67 cpu class
'ev67' CPU class will be returned to match everything, which makes
no sense as mentioned in the comments. Remove the logic to fall
back to 'ev67' CPU class to match everything.

Signed-off-by: Gavin Shan <gshan@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231114235628.534334-2-gshan@redhat.com>
[PMD: Reword subject, replace 'any' -> 'ev67' on linux-user]
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'linux-user/alpha/target_elf.h')
-rw-r--r--linux-user/alpha/target_elf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/alpha/target_elf.h b/linux-user/alpha/target_elf.h
index 344e9f4d39..b77d638f6d 100644
--- a/linux-user/alpha/target_elf.h
+++ b/linux-user/alpha/target_elf.h
@@ -9,6 +9,6 @@
 #define ALPHA_TARGET_ELF_H
 static inline const char *cpu_get_model(uint32_t eflags)
 {
-    return "any";
+    return "ev67";
 }
 #endif