diff options
author | Stan Cox <coxs@gnu.org> | 1997-03-27 22:17:33 +0000 |
---|---|---|
committer | Stan Cox <coxs@gnu.org> | 1997-03-27 22:17:33 +0000 |
commit | d5c65c96b894c2d8f89d5eb34257880e6059f453 (patch) | |
tree | 1c0712862251787faa49982d7ccdb289c52249d6 /gcc | |
parent | 6e2724034c3b9f412e5556c8cf9c18099a9291a8 (diff) | |
download | gcc-d5c65c96b894c2d8f89d5eb34257880e6059f453.zip gcc-d5c65c96b894c2d8f89d5eb34257880e6059f453.tar.gz gcc-d5c65c96b894c2d8f89d5eb34257880e6059f453.tar.bz2 |
(CPP_CPU_DEFAULT): Define if TARGET_CPU_DEFAULT is not set.
From-SVN: r13807
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 6ee0d69..6acb1ba 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -304,14 +304,14 @@ extern int ix86_arch; #ifndef CPP_CPU_SPEC #ifdef __STDC__ -#if TARGET_CPU_DEFAULT == 0 -#define CPP_CPU_DEFAULT "" -#elif TARGET_CPU_DEFAULT == 1 +#if TARGET_CPU_DEFAULT == 1 #define CPP_CPU_DEFAULT "-Di486" #elif TARGET_CPU_DEFAULT == 2 #define CPP_CPU_DEFAULT "-Di586" #elif TARGET_CPU_DEFAULT == 3 #define CPP_CPU_DEFAULT "-Di686" +#else +#define CPP_CPU_DEFAULT "" #endif /* TARGET_CPU_DEFAULT */ #define CPP_CPU_SPEC "\ @@ -392,7 +392,7 @@ extern int ix86_arch; #define PARM_BOUNDARY 32 /* Boundary (in *bits*) on which stack pointer should be aligned. */ -#define STACK_BOUNDARY (TARGET_ALIGN_DOUBLE ? 64 : 32) +#define STACK_BOUNDARY 32 /* Allocation boundary (in *bits*) for the code of a function. For i486, we get better performance by aligning to a cache |