1153819Sgrehan/*-
2153819Sgrehan * Copyright (c) 1991, 1993
3153819Sgrehan *	The Regents of the University of California.  All rights reserved.
4153819Sgrehan *
5153819Sgrehan * Redistribution and use in source and binary forms, with or without
6153819Sgrehan * modification, are permitted provided that the following conditions
7153819Sgrehan * are met:
8153819Sgrehan * 1. Redistributions of source code must retain the above copyright
9153819Sgrehan *    notice, this list of conditions and the following disclaimer.
10153819Sgrehan * 2. Redistributions in binary form must reproduce the above copyright
11153819Sgrehan *    notice, this list of conditions and the following disclaimer in the
12153819Sgrehan *    documentation and/or other materials provided with the distribution.
13153819Sgrehan * 4. Neither the name of the University nor the names of its contributors
14153819Sgrehan *    may be used to endorse or promote products derived from this software
15153819Sgrehan *    without specific prior written permission.
16153819Sgrehan *
17153819Sgrehan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18153819Sgrehan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19153819Sgrehan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20153819Sgrehan * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21153819Sgrehan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22153819Sgrehan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23153819Sgrehan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24153819Sgrehan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25153819Sgrehan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26153819Sgrehan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27153819Sgrehan * SUCH DAMAGE.
28153819Sgrehan *
29153819Sgrehan *	@(#)i386.h	8.1 (Berkeley) 6/6/93
30153819Sgrehan * $FreeBSD: releng/10.3/usr.bin/gprof/powerpc.h 216370 2010-12-11 08:32:16Z joel $
31153819Sgrehan */
32153819Sgrehan
33153819Sgrehan    /*
34153819Sgrehan     *	offset (in bytes) of the code from the entry address of a routine.
35153819Sgrehan     *	(see asgnsamples for use and explanation.)
36153819Sgrehan     */
37153819Sgrehan#define OFFSET_OF_CODE	0
38153819Sgrehan
39153819Sgrehanenum opermodes { dummy };
40153819Sgrehantypedef enum opermodes	operandenum;
41