diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-11-05 18:06:22 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-11-05 18:06:22 +0000 |
commit | af09332e6d6c7f4970b62d1549f5cf0192b7a718 (patch) | |
tree | 3eac243e3d65499dc1b8377629f1be963c8a1605 /gcc | |
parent | 0a49d02ccb882d750c5197c82ff6a19957fce294 (diff) | |
download | gcc-af09332e6d6c7f4970b62d1549f5cf0192b7a718.zip gcc-af09332e6d6c7f4970b62d1549f5cf0192b7a718.tar.gz gcc-af09332e6d6c7f4970b62d1549f5cf0192b7a718.tar.bz2 |
darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Darwin needs VRSAVE.
* config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Darwin
needs VRSAVE.
From-SVN: r73274
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/darwin.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1cd17d9..ab623d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-05 Geoffrey Keating <geoffk@apple.com> + + * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Darwin + needs VRSAVE. + 2003-11-05 Joseph S. Myers <jsm@polyomino.org.uk> * c-typeck.c (pedantic_lvalue_warning): Deprecate use of diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index 15e3f24..e417e0d 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -71,6 +71,7 @@ #define SUBTARGET_OVERRIDE_OPTIONS \ do { \ rs6000_altivec_abi = 1; \ + rs6000_altivec_vrsave = 1; \ if (DEFAULT_ABI == ABI_DARWIN) \ { \ if (MACHO_DYNAMIC_NO_PIC_P) \ |