summaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2008-04-08 08:55:57 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2008-04-08 08:55:57 +0200
commit54e1f2f0dfb42e39fbaea22f8ba41559f760357f (patch)
treec27ab8dd6028d50a5ec341ba4d53ebff79e5f4ae /gcc/ada
parent9147cc0be70d7bcee6ad47ed11834f71ff161e99 (diff)
downloadgcc-54e1f2f0dfb42e39fbaea22f8ba41559f760357f.tar.gz
stringt.adb (Write_String_Table_Entry): Handle wide characters properly
2008-04-08 Robert Dewar <dewar@adacore.com> * stringt.adb (Write_String_Table_Entry): Handle wide characters properly From-SVN: r134053
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/stringt.adb5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/ada/stringt.adb b/gcc/ada/stringt.adb
index 88b72e056dd..6d69d1dcf02 100644
--- a/gcc/ada/stringt.adb
+++ b/gcc/ada/stringt.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- --
@@ -428,9 +428,8 @@ package body Stringt is
for J in 1 .. String_Length (Id) loop
C := Get_String_Char (Id, J);
- if Character'Val (C) = '"' then
+ if C = Character'Pos ('"') then
Write_Str ("""""");
-
else
Write_Char_Code (C);
end if;