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
54e1d3a6
Commit
54e1d3a6
authored
Aug 04, 2000
by
Mark Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor tweaks
From-SVN: r35493
parent
c1194d74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
14 deletions
+4
-14
gcc/extend.texi
+4
-14
No files found.
gcc/extend.texi
View file @
54e1d3a6
...
@@ -203,7 +203,7 @@ handled. For example:
...
@@ -203,7 +203,7 @@ handled. For example:
does
not
work
the
same
way
as
:
does
not
work
the
same
way
as
:
@
example
@
example
inline
int
foo
(
a
)
@{
int
b
=
a
;
return
b
+
3
;
@}
inline
int
foo
(
int
a
)
@{
int
b
=
a
;
return
b
+
3
;
@}
@
end
example
@
end
example
@
noindent
@
noindent
...
@@ -213,19 +213,9 @@ run earlier in the case of the macro than in the case of the function.
...
@@ -213,19 +213,9 @@ run earlier in the case of the macro than in the case of the function.
These
considerations
mean
that
it
is
probably
a
bad
idea
to
use
These
considerations
mean
that
it
is
probably
a
bad
idea
to
use
statement
-
expressions
of
this
form
in
header
files
that
are
designed
to
statement
-
expressions
of
this
form
in
header
files
that
are
designed
to
work
with
C
++.
Note
that
the
GNU
C
Library
does
contain
header
files
work
with
C
++.
(
Note
that
some
versions
of
the
GNU
C
Library
contained
using
statement
-
expressions
,
and
that
these
definitions
make
the
library
header
files
using
statement
-
expression
that
lead
to
precisely
this
technically
non
-
conforming
.
For
example
,
when
optimization
is
turned
bug
.)
on
,
@
example
string
a
,
b
;
printf
(
"%c"
,
toupper
((
a
+
b
).
c_str
()[
0
]));
@
end
example
@
noindent
will
result
in
the
destructor
for
the
temporary
created
for
@
code
{
a
+
b
}
being
run
earlier
than
it
should
be
.
@
node
Local
Labels
@
node
Local
Labels
@
section
Locally
Declared
Labels
@
section
Locally
Declared
Labels
...
...
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