diff options
Diffstat (limited to 'gcc/ada/s-assert.adb')
-rw-r--r-- | gcc/ada/s-assert.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/s-assert.adb b/gcc/ada/s-assert.adb index 030ec17192e..fbc0f8acbc7 100644 --- a/gcc/ada/s-assert.adb +++ b/gcc/ada/s-assert.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2011, 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- -- @@ -32,7 +32,7 @@ pragma Compiler_Unit; with Ada.Exceptions; -with System.Exceptions; +with System.Exceptions_Debug; package body System.Assertions is @@ -42,7 +42,7 @@ package body System.Assertions is procedure Raise_Assert_Failure (Msg : String) is begin - System.Exceptions.Debug_Raise_Assert_Failure; + System.Exceptions_Debug.Debug_Raise_Assert_Failure; Ada.Exceptions.Raise_Exception (Assert_Failure'Identity, Msg); end Raise_Assert_Failure; |