Skip to content
Snippets Groups Projects
Commit 6c2f7eab authored by dtc's avatar dtc
Browse files

Remove alpha and __alpha__ defines hack. Such defines are more

appropriately included in the CFLAGS.
parent d3c2c25d
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.h,v 1.5 1999/02/20 15:54:44 pw Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.h,v 1.6 1999/02/22 11:45:59 dtc Exp $ */
#ifndef _LISP_H_ #ifndef _LISP_H_
#define _LISP_H_ #define _LISP_H_
/* sigh */
#ifdef __alpha__
#ifndef alpha
#define alpha
#endif
#endif
#ifdef alpha
#ifndef __alpha__
#define __alpha__
#endif
#endif
#define lowtag_Bits 3 #define lowtag_Bits 3
#define lowtag_Mask ((1<<lowtag_Bits)-1) #define lowtag_Mask ((1<<lowtag_Bits)-1)
#define LowtagOf(obj) ((obj)&lowtag_Mask) #define LowtagOf(obj) ((obj)&lowtag_Mask)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment