get_cpu: Fix a7ecf2646d6c80b994be7d340140379d580050cf

The call to iflag_clear_all has been occasionally dropped,
bring it back.

https://bugzilla.nasm.us/show_bug.cgi?id=3392466

Reported-by: sezeroz@gmail.com
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-02-25 13:25:19 +03:00
parent fff27ab229
commit 8a231080e0

View File

@ -99,6 +99,8 @@ static iflag_t get_cpu(const char *value)
{ NULL, IF_PLEVEL } /* Error and final default entry */
};
iflag_clear_all(&r);
for (cpu = cpunames; cpu->name; cpu++) {
if (!strcmp(value, cpu->name))
break;