summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deflate.c1
-rw-r--r--inffast.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/deflate.c b/deflate.c
index 7817530..9161f29 100644
--- a/deflate.c
+++ b/deflate.c
@@ -88,6 +88,7 @@ local void putShortMSB OF((deflate_state *s, uInt b));
88local void flush_pending OF((z_streamp strm)); 88local void flush_pending OF((z_streamp strm));
89local unsigned read_buf OF((z_streamp strm, Bytef *buf, unsigned size)); 89local unsigned read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
90#ifdef ASMV 90#ifdef ASMV
91# pragma message("Assembler code may have bugs -- use at your own risk")
91 void match_init OF((void)); /* asm code initialization */ 92 void match_init OF((void)); /* asm code initialization */
92 uInt longest_match OF((deflate_state *s, IPos cur_match)); 93 uInt longest_match OF((deflate_state *s, IPos cur_match));
93#else 94#else
diff --git a/inffast.c b/inffast.c
index a15876d..29eb7d8 100644
--- a/inffast.c
+++ b/inffast.c
@@ -8,7 +8,9 @@
8#include "inflate.h" 8#include "inflate.h"
9#include "inffast.h" 9#include "inffast.h"
10 10
11#ifndef ASMINF 11#ifdef ASMINF
12# pragma message("Assembler code may have bugs -- use at your own risk")
13#else
12 14
13/* 15/*
14 Decode literal, length, and distance codes and write out the resulting 16 Decode literal, length, and distance codes and write out the resulting