summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-06-28 11:28:43 +0000
committerAndy Polyakov <appro@openssl.org>2005-06-28 11:28:43 +0000
commitdb22e5faa6f973397505d34b1ad962116ac7a9a2 (patch)
tree578277a44f6d44d514e6236b6eaa92b55f4167b6 /crypto
parent55d03c317932f8b249315769715153106bb2f31a (diff)
A report suggests that there're nasm version, which defaults to 16-bit
segmenting...
Diffstat (limited to 'crypto')
-rw-r--r--crypto/perlasm/x86nasm.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/perlasm/x86nasm.pl b/crypto/perlasm/x86nasm.pl
index 7d09428387..ab5b96c6c2 100644
--- a/crypto/perlasm/x86nasm.pl
+++ b/crypto/perlasm/x86nasm.pl
@@ -262,8 +262,8 @@ sub using486
sub main'file
{
- push(@out,".") if ($main'mwerks);
- push(@out,"section\t.text\n");
+ if ($main'mwerks) { push(@out,".section\t.text\n"); }
+ else { push(@out,"section\t.text use32\n"); }
}
sub main'function_begin