summaryrefslogtreecommitdiff
path: root/test/gas2nasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/gas2nasm.py')
-rwxr-xr-xtest/gas2nasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gas2nasm.py b/test/gas2nasm.py
index d0b8579a..43a4ecdf 100755
--- a/test/gas2nasm.py
+++ b/test/gas2nasm.py
@@ -39,7 +39,7 @@ def read(options):
l = strr[0].strip()
r = strr[2].strip()
# Filter out Pseudo-op / vex instructions until those are added in insns.dat
- if not (re.match('vcmp.+[ps][ds]', r) or re.match('vpcmp[^u]+u?[dq]', r) or r[0] == 'k'):
+ if not (re.match('vcmp.+[ps][ds]', r) or re.match('vpcmp[^u]+u?[dq]', r)):
d.append(l)
d.append(r)
recs.append(d)