X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FLinkerInternals.h;h=0763703a323463878608005ecd51152655f92ac8;hb=70541676b8c2de0bcecf42eb2edcb2a11f53f83e;hp=2f5fa1760bd4985550f375e64fadd7d0e112d443;hpb=9c5f23d4e31b06a3d6ec8eca7c82934571c348de;p=ghc-hetmet.git diff --git a/ghc/rts/LinkerInternals.h b/ghc/rts/LinkerInternals.h index 2f5fa17..0763703 100644 --- a/ghc/rts/LinkerInternals.h +++ b/ghc/rts/LinkerInternals.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: LinkerInternals.h,v 1.5 2001/09/04 16:33:04 sewardj Exp $ + * $Id: LinkerInternals.h,v 1.6 2002/06/09 13:37:44 matthewc Exp $ * * (c) The GHC Team, 2000 * @@ -70,7 +70,13 @@ typedef struct _ObjectCode { safely be prodded during relocation. Any attempt to prod outside one of these is an error in the linker. */ ProddableBlock* proddables; - + +#ifdef ia64_TARGET_ARCH + /* Procedure Linkage Table for this object */ + void *plt; + unsigned int pltIndex; +#endif + } ObjectCode; extern ObjectCode *objects;