summaryrefslogtreecommitdiff
path: root/gcc/ada/uintp.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/uintp.adb')
-rw-r--r--gcc/ada/uintp.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/uintp.adb b/gcc/ada/uintp.adb
index 1f79670e44e..86a3187fd74 100644
--- a/gcc/ada/uintp.adb
+++ b/gcc/ada/uintp.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- --
@@ -1944,7 +1944,7 @@ package body Uintp is
function UI_Gt (Left : Uint; Right : Uint) return Boolean is
begin
- return UI_Lt (Right, Left);
+ return UI_Lt (Left => Right, Right => Left);
end UI_Gt;
---------------
@@ -1990,7 +1990,7 @@ package body Uintp is
function UI_Le (Left : Uint; Right : Uint) return Boolean is
begin
- return not UI_Lt (Right, Left);
+ return not UI_Lt (Left => Right, Right => Left);
end UI_Le;
------------