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
05b95f63
Commit
05b95f63
authored
May 02, 2017
by
Tristan Gingold
Committed by
Arnaud Charlet
May 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* s-trasym.ads, s-trasym.adb (Enable_Cache): New.
From-SVN: r247471
parent
6fdc25c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
gcc/ada/ChangeLog
+4
-0
gcc/ada/s-trasym.adb
+10
-1
gcc/ada/s-trasym.ads
+7
-1
No files found.
gcc/ada/ChangeLog
View file @
05b95f63
2017
-
05
-
02
Tristan
Gingold
<
gingold
@
adacore
.
com
>
*
s
-
trasym
.
ads
,
s
-
trasym
.
adb
(
Enable_Cache
):
New
.
2017
-
05
-
02
Ed
Schonberg
<
schonberg
@
adacore
.
com
>
*
sem_ch4
.
adb
(
Find_Equality_Types
,
Try_One_Interp
):
The
same
relaxed
...
...
gcc/ada/s-trasym.adb
View file @
05b95f63
...
...
@@ -6,7 +6,7 @@
--
--
--
B
o
d
y
--
--
--
--
Copyright
(
C
)
1999
-
201
5
,
AdaCore
--
--
Copyright
(
C
)
1999
-
201
7
,
AdaCore
--
--
--
--
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
-
--
...
...
@@ -83,4 +83,13 @@ package body System.Traceback.Symbolic is
return Symbolic_Traceback (Ada.Exceptions.Traceback.Tracebacks (E));
end Symbolic_Traceback;
------------------
-- Enable_Cache --
------------------
procedure Enable_Cache (Include_Modules : Boolean := False) is
begin
null;
end Enable_Cache;
end System.Traceback.Symbolic;
gcc/ada/s-trasym.ads
View file @
05b95f63
...
...
@@ -6,7 +6,7 @@
--
--
--
S
p
e
c
--
--
--
--
Copyright
(
C
)
1999
-
201
5
,
AdaCore
--
--
Copyright
(
C
)
1999
-
201
7
,
AdaCore
--
--
--
--
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
-
--
...
...
@@ -82,4 +82,10 @@ package System.Traceback.Symbolic is
(
E
:
Ada
.
Exceptions
.
Exception_Occurrence
)
return
String
;
--
Build
string
containing
symbolic
traceback
of
given
exception
occurrence
procedure
Enable_Cache
(
Include_Modules
:
Boolean
:=
False
);
--
Read
symbolic
information
from
binary
files
and
cache
them
in
memory
.
--
This
will
speed
up
the
above
functions
but
will
require
more
memory
.
--
If
Include_Modules
is
true
,
shared
modules
(
or
DLL
)
will
also
be
cached
.
--
This
procedure
may
do
nothing
if
not
supported
.
end
System
.
Traceback
.
Symbolic
;
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