summaryrefslogtreecommitdiff
path: root/gcc/ada/g-comlin.adb
diff options
context:
space:
mode:
authorbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-14 16:23:18 +0000
committerbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-14 16:23:18 +0000
commitab2ba306f09948ff09fef49f3592d714c38b2d93 (patch)
treeb12d13d305b3e049e0907c34ad5d505ce04fa415 /gcc/ada/g-comlin.adb
parenta39fe8c82fd895251538269b679047bd6fc98ac5 (diff)
downloadgcc-ab2ba306f09948ff09fef49f3592d714c38b2d93.tar.gz
2008-04-14 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r134275 stilly buggy for libgcc muldi3: internal compiler error: in execute_ipa_pass_list, at passes.c:1235 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@134279 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/g-comlin.adb')
-rw-r--r--gcc/ada/g-comlin.adb18
1 files changed, 13 insertions, 5 deletions
diff --git a/gcc/ada/g-comlin.adb b/gcc/ada/g-comlin.adb
index e90af875eae..c9cb4dbad25 100644
--- a/gcc/ada/g-comlin.adb
+++ b/gcc/ada/g-comlin.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1999-2007, Free Software Foundation, Inc. --
+-- Copyright (C) 1999-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- --
@@ -264,8 +264,6 @@ package body GNAT.Command_Line is
end;
end if;
end loop;
-
- return String'(1 .. 0 => ' ');
end Expansion;
-----------------
@@ -1110,13 +1108,23 @@ package body GNAT.Command_Line is
-----------------------
procedure Set_Configuration
- (Cmd : in out Command_Line;
- Config : Command_Line_Configuration)
+ (Cmd : in out Command_Line;
+ Config : Command_Line_Configuration)
is
begin
Cmd.Config := Config;
end Set_Configuration;
+ -----------------------
+ -- Get_Configuration --
+ -----------------------
+
+ function Get_Configuration
+ (Cmd : Command_Line) return Command_Line_Configuration is
+ begin
+ return Cmd.Config;
+ end Get_Configuration;
+
----------------------
-- Set_Command_Line --
----------------------