start some tests
[ia32rtools.git] / tests / reg_save.expect.c
diff --git a/tests/reg_save.expect.c b/tests/reg_save.expect.c
new file mode 100644 (file)
index 0000000..86e4d85
--- /dev/null
@@ -0,0 +1,14 @@
+int sub_test()
+{
+  u32 eax;
+  u32 ebx;
+  u32 s_ebx;
+
+  ebx = 1;
+  s_ebx = ebx;
+  ebx = 2;
+  ebx = s_ebx;
+  eax = 0xffffffff;
+  return eax;
+}
+