diff options
author | Alan Modra <amodra@gmail.com> | 2013-09-17 11:34:49 +0930 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2013-09-17 11:34:49 +0930 |
commit | 567969e484ec339bc94f7fbcb5668fb92e40183e (patch) | |
tree | db1d2cab60a61650dee8c2928230368c5e68341c /gcc/config | |
parent | 00d88b23c63a9a018a03f43a79cdfaf801374ed1 (diff) | |
download | gcc-567969e484ec339bc94f7fbcb5668fb92e40183e.zip gcc-567969e484ec339bc94f7fbcb5668fb92e40183e.tar.gz gcc-567969e484ec339bc94f7fbcb5668fb92e40183e.tar.bz2 |
re PR target/57589 (Linux powerpc -mcpu=native returns pointer to variable on stack in driver-rs6000.c)
PR target/57589
* config/rs6000/driver-rs6000.c (elf_platform): Revert 2013-06-11 patch.
From-SVN: r202642
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/rs6000/driver-rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/driver-rs6000.c b/gcc/config/rs6000/driver-rs6000.c index 1a173d0..e608dce 100644 --- a/gcc/config/rs6000/driver-rs6000.c +++ b/gcc/config/rs6000/driver-rs6000.c @@ -167,7 +167,7 @@ elf_platform (void) if (fd != -1) { - static char buf[1024]; + char buf[1024]; ElfW(auxv_t) *av; ssize_t n; |