X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fada%2Fnlists.adb;h=e809d15ebb63f5a522d4ed1cfc768dec306aadbb;hb=6a167a57b73f180e3bdb2482a43db877c73f3084;hp=768e130dce579084f8ff9a7b20515e630ec6378f;hpb=27f486599a19a5923b58ad522668b34b5c4d956f;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/ada/nlists.adb b/gcc/ada/nlists.adb index 768e130dce5..e809d15ebb6 100644 --- a/gcc/ada/nlists.adb +++ b/gcc/ada/nlists.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2008, 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- -- @@ -604,7 +604,7 @@ package body Nlists is function Is_Non_Empty_List (List : List_Id) return Boolean is begin - return List /= No_List and then First (List) /= Empty; + return First (List) /= Empty; end Is_Non_Empty_List; ----------