Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
10af6212
Commit
10af6212
authored
May 22, 2015
by
Arnaud Charlet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor reformatting.
From-SVN: r223544
parent
65467a8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ada/prj-util.adb
+8
-4
gcc/ada/prj-util.ads
+1
-1
No files found.
gcc/ada/prj-util.adb
View file @
10af6212
...
...
@@ -804,9 +804,9 @@ package body Prj.Util is
-- Relative_Path --
-------------------
function Relative_Path (Pathname, To : String) return String is
function Relative_Path (Pathname : String; To : String) return String is
function Ensure_Directory (Path : String) return String;
-- Function spec must be commented ???
----------------------
-- Ensure_Directory --
...
...
@@ -824,6 +824,8 @@ package body Prj.Util is
end
if
;
end
Ensure_Directory
;
--
Local
variables
Dir_Sep_Map
:
constant
Character_Mapping
:=
To_Mapping
(
"
\"
, "
/
");
P : String (1 .. Pathname'Length) := Pathname;
...
...
@@ -832,6 +834,8 @@ package body Prj.Util is
Pi : Natural; -- common prefix ending
N : Natural := 0;
-- Start of processing for Relative_Path
begin
pragma Assert (Is_Absolute_Path (Pathname));
pragma Assert (Is_Absolute_Path (To));
...
...
@@ -858,6 +862,7 @@ package body Prj.Util is
-- corresponding number of "
..
".
N := Count (T (Pi + 1 .. T'Last), "
/
");
if T (T'Last) /= '/' then
N := N + 1;
end if;
...
...
@@ -1405,8 +1410,7 @@ package body Prj.Util is
Last := Last - 1;
end loop;
-- If we do not find a separator, we output the maximum length
-- possible.
-- If we do not find a separator, output maximum length possible
if Last < First then
Last := First + Max_Length - Positive (Column);
...
...
gcc/ada/prj-util.ads
View file @
10af6212
...
...
@@ -245,7 +245,7 @@ package Prj.Util is
-- are handled. This routine must be called only when the project has
-- been built successfully.
function Relative_Path (Pathname
,
To : String) return String;
function Relative_Path (Pathname
: String;
To : String) return String;
-- Returns the relative pathname which corresponds to Pathname when
-- starting from directory to. Both Pathname and To must be absolute paths.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment