summaryrefslogtreecommitdiff
path: root/gcc/ada/s-tpopde-vms.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/s-tpopde-vms.adb')
-rw-r--r--gcc/ada/s-tpopde-vms.adb10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/s-tpopde-vms.adb b/gcc/ada/s-tpopde-vms.adb
index 8e3f2b58d8e..b26b274a39a 100644
--- a/gcc/ada/s-tpopde-vms.adb
+++ b/gcc/ada/s-tpopde-vms.adb
@@ -7,7 +7,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 2000-2005 Free Software Foundation, Inc. --
+-- Copyright (C) 2000-2007, Free Software Foundation, Inc. --
-- --
-- GNARL 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- --
@@ -37,7 +37,7 @@
with System.OS_Interface;
with System.Parameters;
with System.Tasking;
-with Unchecked_Conversion;
+with Ada.Unchecked_Conversion;
with System.Soft_Links;
package body System.Task_Primitives.Operations.DEC is
@@ -74,15 +74,15 @@ package body System.Task_Primitives.Operations.DEC is
-- Task_Id is 64 bits wide (but only 32 bits significant) on Integrity/VMS
function To_Unsigned_Longword is new
- Unchecked_Conversion (Task_Id, Unsigned_Longword);
+ Ada.Unchecked_Conversion (Task_Id, Unsigned_Longword);
function To_Task_Id is new
- Unchecked_Conversion (Unsigned_Longword, Task_Id);
+ Ada.Unchecked_Conversion (Unsigned_Longword, Task_Id);
pragma Warnings (On);
function To_FAB_RAB is new
- Unchecked_Conversion (Address, FAB_RAB_Access_Type);
+ Ada.Unchecked_Conversion (Address, FAB_RAB_Access_Type);
---------------------------
-- Interrupt_AST_Handler --