summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL. E. Segovia <amy@centricular.com>2024-04-19 20:58:15 -0300
committerL. E. Segovia <amy@centricular.com>2024-04-26 18:18:29 -0300
commit442a4483976741dc5c76dff4ee49e4d1ceeb58ae (patch)
tree83eccde3ae96ef674fae411392f10ea8b17d3914
parentebc2796823d80221aa9f2f222ece2b51a9bf2e42 (diff)
avx: Fix incomplete naming of compiler optionsHEADmain
Based on the SSE listing, there are two missing entries that I believed were not used. However, they are used by the CPUID test. Part-of: <https://gitlab.freedesktop.org/gstreamer/orc/-/merge_requests/180>
-rw-r--r--orc/orcprogram-avx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/orc/orcprogram-avx.c b/orc/orcprogram-avx.c
index 90f0e31..34a416c 100644
--- a/orc/orcprogram-avx.c
+++ b/orc/orcprogram-avx.c
@@ -46,11 +46,13 @@ avx_get_flag_name (const int shift)
"ssse3",
"sse41",
"sse42",
+ "sse4a",
+ "sse5",
"frame_pointer",
"short_jumps",
"64bit",
"avx",
- "avx2",
+ "avx2"
};
if (shift >= 0 && shift < sizeof (flags) / sizeof (flags[0])) {