added rcsid
This commit is contained in:
parent
18ffd176ba
commit
3c197c150a
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
extern line_p newline();
|
||||
extern offset *newrom();
|
||||
extern sym_p newsym();
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
#ifndef NDEBUG
|
||||
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
|
||||
#else
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
#ifndef FILE
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
#define NARGBYTES 14
|
||||
struct argbytes {
|
||||
argb_p ab_next;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
#define IDL 8
|
||||
|
||||
struct sym {
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
: '$Header$'
|
||||
for extension in c y
|
||||
do
|
||||
for file in *.$extension
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
%{
|
||||
#ifndef NORCSID
|
||||
static char rcsid[] = "$Header$";
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include "param.h"
|
||||
#include "types.h"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
/* #define DIAGOPT /* if defined diagnostics are produced */
|
||||
#ifdef DIAGOPT
|
||||
#define OPTIM(x) optim(x)
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
#define LONGOFF /* if defined long offsets are used */
|
||||
|
||||
#define TRUE 1
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
/*
|
||||
* pattern contains the optimization patterns in an apparently
|
||||
* unordered fashion. All patterns follow each other unaligned.
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# $Header$
|
||||
loc adi loc sbi $2==w && $4==w: loc $1-$3 adi w
|
||||
ldc adi ldc sbi $2==2*w && $4==2*w: ldc $1-$3 adi 2*w
|
||||
loc adi loc adi $2==w && $4==w: loc $1+$3 adi w
|
||||
|
@ -438,8 +439,8 @@ lal loi lal sti $2==$4 && $2>4*w && ( $3<=$1-$2 || $3>=$1+$2 ) :
|
|||
lae loi lae sti $2==$4 && $2>4*w && ( !defined($1==$3) || $3<=$1-$2 || $3>=$1+$2 ) :
|
||||
lae $1 lae $3 blm $2
|
||||
loc loc loc cif $1==0 && $2==w : zrf $3
|
||||
loc loc loc cii $2==w && $3==2*w : ldc $1
|
||||
loc loc loc ciu $1>=0 && $2==w && $3==2*w : ldc $1
|
||||
loc loc loc cii $2==w && $3==2*w : ldc $1
|
||||
loi loc inn $1==$3 && $2>=0 && $2<$1*8 :
|
||||
lof ($2/(8*w))*w loc $2&(8*w-1) inn w
|
||||
ldl loc inn $3==2*w && $2>=0 && $2<16*w :
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
: '$Header$'
|
||||
while true
|
||||
do
|
||||
(echo ' mes 2,2,2
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $Header$ */
|
||||
|
||||
typedef char byte;
|
||||
typedef char bool;
|
||||
typedef struct line line_t;
|
||||
|
|
Loading…
Reference in a new issue