diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-04 16:19:09 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-04 16:19:09 +0000 |
commit | 0859cd514b7dc5b242619827acca1525a17502e7 (patch) | |
tree | 283f58dcb680b674ee8c9594bc51b67879e40409 | |
parent | a0209f484e9ee1fffe17770edc32247e364668ae (diff) | |
download | gcc-0859cd514b7dc5b242619827acca1525a17502e7.zip gcc-0859cd514b7dc5b242619827acca1525a17502e7.tar.gz gcc-0859cd514b7dc5b242619827acca1525a17502e7.tar.bz2 |
(WORD_SWITCH_TAKES_ARG): Fix typo.
From-SVN: r1420
-rw-r--r-- | gcc/config/i960/i960.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i960/i960.h b/gcc/config/i960/i960.h index 9b8b496..c15e535 100644 --- a/gcc/config/i960/i960.h +++ b/gcc/config/i960/i960.h @@ -87,7 +87,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* These compiler options take an argument. */ #define WORD_SWITCH_TAKES_ARG(STR) \ (!strcmp (STR, "Tdata") || !strcmp (STR, "include") \ - || !strcmp (STR, "imacros") || !strcmp (STR, "Ttext") + || !strcmp (STR, "imacros") || !strcmp (STR, "Ttext") \ || !strcmp (STR, "aux-info")) /* Omit frame pointer at -O2. Inline functions at -O3. */ |