diff options
author | Robert Dewar <dewar@adacore.com> | 2007-08-14 10:36:48 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-08-14 10:36:48 +0200 |
commit | 835d23b2e08bb08e88163700eac0dc08442b2b0b (patch) | |
tree | 05b5ae79d8bf769dcfc728d032c9a64d115ddfeb /gcc/ada/xnmake.adb | |
parent | 4a9b6b95df593226fd81c8d2a828e130b9d9a660 (diff) | |
download | gcc-835d23b2e08bb08e88163700eac0dc08442b2b0b.zip gcc-835d23b2e08bb08e88163700eac0dc08442b2b0b.tar.gz gcc-835d23b2e08bb08e88163700eac0dc08442b2b0b.tar.bz2 |
uintp.adb, [...]: Minor reformatting.
2007-08-14 Robert Dewar <dewar@adacore.com>
* uintp.adb, a-ztedit.adb, s-wchcon.adb, xnmake.adb, s-wchcon.adb,
par-ch5.adb, par-ch10.adb, get_targ.adb, a-wtedit.adb, a-teioed.adb,
s-osinte-solaris.adb, s-osinte-solaris.ads,
s-osinte-freebsd.ads, s-osinte-freebsd.adb: Minor reformatting.
* styleg.adb, styleg.ads, stylesw.adb, stylesw.ads: implement style
switch -gnatyS. Enable -gnatyS in GNAT style check mode
From-SVN: r127409
Diffstat (limited to 'gcc/ada/xnmake.adb')
-rw-r--r-- | gcc/ada/xnmake.adb | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/gcc/ada/xnmake.adb b/gcc/ada/xnmake.adb index ec08692..40bfa12 100644 --- a/gcc/ada/xnmake.adb +++ b/gcc/ada/xnmake.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -372,12 +372,18 @@ begin then Match (Field, Get_Field); - if Field = "Str" then Field := V_String_Id; - elsif Field = "Node" then Field := V_Node_Id; - elsif Field = "Name" then Field := V_Name_Id; - elsif Field = "List" then Field := V_List_Id; - elsif Field = "Elist" then Field := V_Elist_Id; - elsif Field = "Flag" then Field := V_Boolean; + if Field = "Str" then + Field := V_String_Id; + elsif Field = "Node" then + Field := V_Node_Id; + elsif Field = "Name" then + Field := V_Name_Id; + elsif Field = "List" then + Field := V_List_Id; + elsif Field = "Elist" then + Field := V_Elist_Id; + elsif Field = "Flag" then + Field := V_Boolean; end if; if Field = "Boolean" then |