summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw20035c.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/webtbs/tw20035c.pp')
-rwxr-xr-xtests/webtbs/tw20035c.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/webtbs/tw20035c.pp b/tests/webtbs/tw20035c.pp
new file mode 100755
index 0000000000..78e7afb2ed
--- /dev/null
+++ b/tests/webtbs/tw20035c.pp
@@ -0,0 +1,17 @@
+{ %cpu=i386 }
+{ %fail }
+{ %opt=-Sew }
+{ %norun }
+program testasm;
+
+begin
+ {$asmmode intel}
+ asm
+ mov eax,es:[0]
+ end;
+ {$asmmode att}
+ asm
+ mov %es:0,%eax
+ mov %es:(0),%eax
+ end;
+end.