From: Richard Kenner Date: Sun, 11 Apr 1993 19:22:53 +0000 (-0400) Subject: (strip_off_ending): Add .atr for Ada. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=be07ab12f72699ff8f3517dfe06ea81e0b9aa244;p=gcc.git (strip_off_ending): Add .atr for Ada. From-SVN: r4086 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index b2eebbdce6f..a0108b8eb36 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1473,6 +1473,8 @@ strip_off_ending (name, len) name[len - 2] = 0; else if (len > 4 && ! strcmp (".ada", name + len - 4)) name[len - 4] = 0; + else if (len > 4 && ! strcmp (".atr", name + len - 4)) + name[len - 4] = 0; } /* Output a file name in the form wanted by System V. */