Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
335c9de7
Commit
335c9de7
authored
Dec 01, 2002
by
Zack Weinberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert change accidentally applied to wrong branch
From-SVN: r59688
parent
c2bea6b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
61 deletions
+2
-61
gcc/coretypes.h
+0
-58
gcc/unwind-dw2-fde-darwin.c
+2
-3
No files found.
gcc/coretypes.h
deleted
100644 → 0
View file @
c2bea6b0
/* GCC core type declarations.
Copyright (C) 2002 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 2, 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 COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
/* Provide forward declarations of core types which are referred to by
most of the compiler. This allows header files to use these types
(e.g. in function prototypes) without concern for whether the full
definitions are visible. Some other declarations that need to be
universally visible are here, too.
In the context of tconfig.h, most of these have special definitions
which prevent them from being used except in further type
declarations. This is a kludge; the right thing is to avoid
including the "tm.h" header set in the context of tconfig.h, but
we're not there yet. */
#ifndef GCC_CORETYPES_H
#define GCC_CORETYPES_H
#define GTY(x)
/* nothing - marker for gengtype */
#ifndef USED_FOR_TARGET
struct
rtx_def
;
typedef
struct
rtx_def
*
rtx
;
struct
rtvec_def
;
typedef
struct
rtvec_def
*
rtvec
;
union
tree_node
;
typedef
union
tree_node
*
tree
;
#else
struct
_dont_use_rtx_here_
;
struct
_dont_use_rtvec_here_
;
union
_dont_use_tree_here_
;
#define rtx struct _dont_use_rtx_here_ *
#define rtvec struct _dont_use_rtvec_here *
#define tree union _dont_use_tree_here_ *
#endif
#endif
/* coretypes.h */
gcc/unwind-dw2-fde-darwin.c
View file @
335c9de7
...
...
@@ -27,9 +27,8 @@
/* Locate the FDE entry for a given address, using Darwin's keymgr support. */
#include "tconfig.h"
#include "tsystem.h"
#include "coretypes.h"
#include "tm.h"
#include <string.h>
#include <stdlib.h>
#include "dwarf2.h"
#include "unwind.h"
#define NO_BASE_OF_ENCODED_VALUE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment