summaryrefslogtreecommitdiff
path: root/gcc/config/pa/pa-opts.h
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-22 22:42:51 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-22 22:42:51 +0000
commitd09dbe0a437b37b0042058dc2d63ab815fe3af46 (patch)
tree49d63a6f66695967bb4c29a86117bad9b47d2486 /gcc/config/pa/pa-opts.h
parent177dbc5b231beb5711da30c75a7995dd1a5be534 (diff)
downloadgcc-d09dbe0a437b37b0042058dc2d63ab815fe3af46.tar.gz
* config/pa/pa-hpux.opt (flag_pa_unix): New Variable entry.
(munix=93): Use Var. * config/pa/pa-hpux1010.opt (munix=95): Use Var. * config/pa/pa-hpux1111.opt (munix=98): Use Var. * config/pa/pa-opts.h: New. * config/pa/pa.c (pa_cpu, flag_pa_unix): Remove. (pa_handle_option): Don't assert that global structures are in use. Access target_flags via opts pointer. Don't handle OPT_mschedule_, OPT_mfixed_range_, OPT_munix_93, OPT_munix_95 or OPT_munix_98 here. (pa_option_override): Handle deferred OPT_mfixed_range_. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171324 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa/pa-opts.h')
-rw-r--r--gcc/config/pa/pa-opts.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/gcc/config/pa/pa-opts.h b/gcc/config/pa/pa-opts.h
new file mode 100644
index 00000000000..b0828fcf30a
--- /dev/null
+++ b/gcc/config/pa/pa-opts.h
@@ -0,0 +1,37 @@
+/* Definitions for option handling for HP PA.
+ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
+ Free Software Foundation, Inc.
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3, or (at your option)
+any later version.
+
+GCC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING3. If not see
+<http://www.gnu.org/licenses/>. */
+
+#ifndef PA_OPTS_H
+#define PA_OPTS_H
+
+/* Which processor to schedule for. */
+
+enum processor_type
+{
+ PROCESSOR_700,
+ PROCESSOR_7100,
+ PROCESSOR_7100LC,
+ PROCESSOR_7200,
+ PROCESSOR_7300,
+ PROCESSOR_8000
+};
+
+#endif