Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
cebfccda
Commit
cebfccda
authored
32 years ago
by
Richard Stallman
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
From-SVN: r992
parent
b505fab8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gcc/config/i860/fx2800.h
+27
-15
27 additions, 15 deletions
gcc/config/i860/fx2800.h
with
27 additions
and
15 deletions
gcc/config/i860/fx2800.h
+
27
−
15
View file @
cebfccda
...
@@ -195,25 +195,37 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -195,25 +195,37 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
line!=0?64:0,line)
line!=0?64:0,line)
#define DBX_OUTPUT_CATCH(file,decl,name) \
#define DBX_OUTPUT_CATCH(file,decl,name) \
fprintf (file, ".stab \"%s:C1\",", IDENTIFIER_POINTER (DECL_NAME (decl))); \
fprintf (file, ".stab \"%s:C1\",", \
assemble_name (file, name); \
IDENTIFIER_POINTER (DECL_NAME (decl))); \
fprintf (file, ",0x%x,0,0\n", N_CATCH)
assemble_name (file, name); \
fprintf (file, ",0x%x,0,0\n", N_CATCH)
#define DBX_OUTPUT_LBRAC(file,name) \
#define DBX_OUTPUT_LBRAC(file,name) \
if (depth > 1) { \
if (depth > 1) {
\
fprintf (file, ".stab \"\","); \
fprintf (file, ".stab \"\","); \
assemble_name (file, name); \
assemble_name (file, name);
\
fprintf (file, ",0x%x,0,%d\n", N_LBRAC, depth); }
fprintf (file, ",0x%x,0,%d\n", N_LBRAC, depth); }
#define DBX_OUTPUT_RBRAC(file,name) \
#define DBX_OUTPUT_RBRAC(file,name) \
if (depth > 1) { \
if (depth > 1) { \
fprintf (file, ".stab \"\","); \
fprintf (file, ".stab \"\","); \
assemble_name (file, name); \
assemble_name (file, name); \
fprintf (file, ",0x%x,0,%d\n", N_RBRAC, depth); }
fprintf (file, ",0x%x,0,%d\n", N_RBRAC, depth); }
#define DBX_OUTPUT_ENUM(file) \
#define DBX_OUTPUT_ENUM(file) \
fprintf (file, "e3"); \
fprintf (file, "e3"); \
CHARS(2)
CHARS(2) \
for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem)) \
{ \
fprintf (asmfile, "%s:%d,", \
IDENTIFIER_POINTER (TREE_PURPOSE (tem)), \
TREE_INT_CST_LOW (TREE_VALUE (tem))); \
CHARS (11 + IDENTIFIER_LENGTH (TREE_PURPOSE (tem))); \
if (TREE_CHAIN (tem) != 0) \
CONTIN; \
} \
putc (';', asmfile); \
CHARS (1);
/* Undefine some things defined in i860.h because the native C compiler
/* Undefine some things defined in i860.h because the native C compiler
on the FX/2800 emits code to do these operations inline. For GCC,
on the FX/2800 emits code to do these operations inline. For GCC,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment