From 91f8aa7118f4c4386d142b3de165bed293dabb6b Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Tue, 6 Feb 2018 23:04:58 +0300 Subject: iflag: Fix iflag_cmp_cpu_level In commit a8f3698cf31a9379cf85416c6cb40c3340e90adb the iflag_cmp_cpu_level escaped updating. Fix it. Reported-by: Tomasz Kantecki Signed-off-by: Cyrill Gorcunov --- include/iflag.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/iflag.h b/include/iflag.h index 02787de9..1cef9b64 100644 --- a/include/iflag.h +++ b/include/iflag.h @@ -131,9 +131,9 @@ static inline int iflag_cmp_cpu_level(const iflag_t *a, const iflag_t *b) iflag_clear(&v2, IF_CYRIX); iflag_clear(&v2, IF_AMD); - if (v1.field[3] < v2.field[3]) + if (v1.field[4] < v2.field[4]) return -1; - else if (v1.field[3] > v2.field[3]) + else if (v1.field[4] > v2.field[4]) return 1; return 0; -- cgit v1.2.1 From 7c640b757909d6d88242b4c2016d8121dddd2b48 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Wed, 7 Feb 2018 00:06:47 +0300 Subject: NASM 2.13.03rc4 Signed-off-by: Cyrill Gorcunov --- version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version b/version index f409fd21..93e2879d 100644 --- a/version +++ b/version @@ -1 +1 @@ -2.13.03rc3 +2.13.03rc4 -- cgit v1.2.1