Commit da594c94 by Jeffrey A Law Committed by Jeff Law

* i386.h (CPP_CPU_DEFAULT): Avoid using #elif.

From-SVN: r15083
parent 3e28fe44
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
......
...@@ -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 "\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment