diff options
author | miod <> | 2014-05-01 22:26:22 +0000 |
---|---|---|
committer | miod <> | 2014-05-01 22:26:22 +0000 |
commit | 42050bb9b9848e1229363c4840d2a214d70b2d48 (patch) | |
tree | 5bdf59a29f5384260b9059c1f42256aef487825d /src/lib/libcrypto/modes | |
parent | 031f640e84754f48f8bd28e4e489d6db7e922022 (diff) | |
download | openbsd-42050bb9b9848e1229363c4840d2a214d70b2d48.tar.gz openbsd-42050bb9b9848e1229363c4840d2a214d70b2d48.tar.bz2 openbsd-42050bb9b9848e1229363c4840d2a214d70b2d48.zip |
Do not output SOM-specific directives.
Diffstat (limited to 'src/lib/libcrypto/modes')
-rw-r--r-- | src/lib/libcrypto/modes/asm/ghash-parisc.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/libcrypto/modes/asm/ghash-parisc.pl b/src/lib/libcrypto/modes/asm/ghash-parisc.pl index 535af86bef..38c5e00a98 100644 --- a/src/lib/libcrypto/modes/asm/ghash-parisc.pl +++ b/src/lib/libcrypto/modes/asm/ghash-parisc.pl | |||
@@ -81,8 +81,12 @@ $rem2="%r6"; # used in PA-RISC 2.0 code | |||
81 | 81 | ||
82 | $code.=<<___; | 82 | $code.=<<___; |
83 | .LEVEL $LEVEL | 83 | .LEVEL $LEVEL |
84 | #if 0 | ||
84 | .SPACE \$TEXT\$ | 85 | .SPACE \$TEXT\$ |
85 | .SUBSPA \$CODE\$,QUAD=0,ALIGN=8,ACCESS=0x2C,CODE_ONLY | 86 | .SUBSPA \$CODE\$,QUAD=0,ALIGN=8,ACCESS=0x2C,CODE_ONLY |
87 | #else | ||
88 | .text | ||
89 | #endif | ||
86 | 90 | ||
87 | .EXPORT gcm_gmult_4bit,ENTRY,ARGW0=GR,ARGW1=GR | 91 | .EXPORT gcm_gmult_4bit,ENTRY,ARGW0=GR,ARGW1=GR |
88 | .ALIGN 64 | 92 | .ALIGN 64 |
@@ -617,6 +621,8 @@ L\$rem_4bit | |||
617 | .WORD `0x7080<<16`,0,`0x6CA0<<16`,0,`0x48C0<<16`,0,`0x54E0<<16`,0 | 621 | .WORD `0x7080<<16`,0,`0x6CA0<<16`,0,`0x48C0<<16`,0,`0x54E0<<16`,0 |
618 | .WORD `0xE100<<16`,0,`0xFD20<<16`,0,`0xD940<<16`,0,`0xC560<<16`,0 | 622 | .WORD `0xE100<<16`,0,`0xFD20<<16`,0,`0xD940<<16`,0,`0xC560<<16`,0 |
619 | .WORD `0x9180<<16`,0,`0x8DA0<<16`,0,`0xA9C0<<16`,0,`0xB5E0<<16`,0 | 623 | .WORD `0x9180<<16`,0,`0x8DA0<<16`,0,`0xA9C0<<16`,0,`0xB5E0<<16`,0 |
624 | |||
625 | .data | ||
620 | .STRINGZ "GHASH for PA-RISC, GRYPTOGAMS by <appro\@openssl.org>" | 626 | .STRINGZ "GHASH for PA-RISC, GRYPTOGAMS by <appro\@openssl.org>" |
621 | .ALIGN 64 | 627 | .ALIGN 64 |
622 | ___ | 628 | ___ |