about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2015-02-27 15:57:58 +0100
committerCamille Mougey <commial@gmail.com>2015-02-27 15:57:58 +0100
commit9c77eb1dd888201c439882a8c93a9e87e047fd0a (patch)
tree0a0de39f6d692be062763b4c7fdcc1ae5da6ec75 /test/arch/x86/arch.py
parenta225ef4cfec9d8a07884e2ac979e82e9db0e1b37 (diff)
parent847e334dd981fc456f173b241eb018ccf7a0e82b (diff)
downloadmiasm-9c77eb1dd888201c439882a8c93a9e87e047fd0a.tar.gz
miasm-9c77eb1dd888201c439882a8c93a9e87e047fd0a.zip
Merge pull request #91 from serpilliere/fix_x86_stack_sem
Fix x86 stack sem
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 16a0794a..5ee65ee5 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -1115,10 +1115,10 @@ reg_tests = [
      "9d"),
     (m32, "00000000    POPFD",
      "9d"),
-    (m64, "00000000    POPFD",
-     "9d"),
     (m64, "00000000    POPFQ",
-     "489d"),
+     "9d"),
+    (m64, "00000000    POPFW",
+     "669d"),
 
     (m32, "00000000    PREFETCH0  BYTE PTR [EAX]",
      "0f1808"),
@@ -1183,10 +1183,10 @@ reg_tests = [
      "9c"),
     (m32, "00000000    PUSHFD",
      "9c"),
-    (m64, "00000000    PUSHFD",
-     "9c"),
     (m64, "00000000    PUSHFQ",
-     "489c"),
+     "9c"),
+    (m64, "00000000    PUSHFW",
+     "669c"),
 
     (m32, "00000000    RCL        BYTE PTR [EAX], 0x1",
      "D010"),