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
da594c94
Commit
da594c94
authored
Sep 04, 1997
by
Jeffrey A Law
Committed by
Jeff Law
Sep 04, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.h (CPP_CPU_DEFAULT): Avoid using #elif.
From-SVN: r15083
parent
3e28fe44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.h
+6
-2
No files found.
gcc/ChangeLog
View file @
da594c94
Thu Sep 4 14:51:57 1997 Jeffrey A Law (law@cygnus.com)
* i386.h (CPP_CPU_DEFAULT): Avoid using #elif.
Thu Sep 4 15:01:49 1997 Michael Meissner <meissner@cygnus.com>
Thu Sep 4 15:01:49 1997 Michael Meissner <meissner@cygnus.com>
* toplev.c (rest_of_compilation): For passes starting with
* toplev.c (rest_of_compilation): For passes starting with
...
...
gcc/config/i386/i386.h
View file @
da594c94
...
@@ -306,12 +306,16 @@ extern int ix86_arch;
...
@@ -306,12 +306,16 @@ extern int ix86_arch;
#ifdef __STDC__
#ifdef __STDC__
#if TARGET_CPU_DEFAULT == 1
#if TARGET_CPU_DEFAULT == 1
#define CPP_CPU_DEFAULT "-Di486"
#define CPP_CPU_DEFAULT "-Di486"
#elif TARGET_CPU_DEFAULT == 2
#else
#if TARGET_CPU_DEFAULT == 2
#define CPP_CPU_DEFAULT "-Di586"
#define CPP_CPU_DEFAULT "-Di586"
#elif TARGET_CPU_DEFAULT == 3
#else
#if TARGET_CPU_DEFAULT == 3
#define CPP_CPU_DEFAULT "-Di686"
#define CPP_CPU_DEFAULT "-Di686"
#else
#else
#define CPP_CPU_DEFAULT ""
#define CPP_CPU_DEFAULT ""
#endif
#endif
#endif
/* TARGET_CPU_DEFAULT */
#endif
/* TARGET_CPU_DEFAULT */
#define CPP_CPU_SPEC "\
#define CPP_CPU_SPEC "\
...
...
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