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
1cc75298
Commit
1cc75298
authored
May 21, 1998
by
Mark Mitchell
Committed by
Mark Mitchell
May 21, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cplus-dem.c (do_type): Handle volatile qualification.
From-SVN: r19932
parent
178ca02d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
gcc/ChangeLog
+4
-0
gcc/cplus-dem.c
+4
-2
libiberty/ChangeLog
+4
-0
libiberty/cplus-dem.c
+4
-2
No files found.
gcc/ChangeLog
View file @
1cc75298
1998-05-21 Mark Mitchell <mmitchell@usa.net>
* cplus-dem.c (do_type): Handle volatile qualification.
Thu May 21 12:23:17 1998 Per Bothner <bothner@cygnus.com>
* function.c (init_function_start): Don't call emit_line_note if
...
...
gcc/cplus-dem.c
View file @
1cc75298
...
...
@@ -2640,7 +2640,7 @@ do_type (work, mangled, result)
break
;
case
'C'
:
(
*
mangled
)
++
;
case
'V'
:
/*
if ((*mangled)[1] == 'P')
{
...
...
@@ -2651,8 +2651,10 @@ do_type (work, mangled, result)
{
string_prepend
(
&
decl
,
" "
);
}
string_prepend
(
&
decl
,
"const"
);
string_prepend
(
&
decl
,
(
**
mangled
)
==
'C'
?
"const"
:
"volatile"
);
}
(
*
mangled
)
++
;
break
;
/*
}
...
...
libiberty/ChangeLog
View file @
1cc75298
1998-05-21 Mark Mitchell <mmitchell@usa.net>
* cplus-dem.c (do_type): Handle volatile qualification.
1998-05-21 Manfred Hollstein <manfred@s-direktnet.de>
* configure.in: Check for unistd.h as well.
...
...
libiberty/cplus-dem.c
View file @
1cc75298
...
...
@@ -2628,7 +2628,7 @@ do_type (work, mangled, result)
break
;
case
'C'
:
(
*
mangled
)
++
;
case
'V'
:
/*
if ((*mangled)[1] == 'P')
{
...
...
@@ -2639,8 +2639,10 @@ do_type (work, mangled, result)
{
string_prepend
(
&
decl
,
" "
);
}
string_prepend
(
&
decl
,
"const"
);
string_prepend
(
&
decl
,
(
**
mangled
)
==
'C'
?
"const"
:
"volatile"
);
}
(
*
mangled
)
++
;
break
;
/*
}
...
...
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