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
19a027a0
Commit
19a027a0
authored
Nov 22, 1999
by
Nathan Sidwell
Committed by
Nathan Sidwell
Nov 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.old-deja/g++.other/warn4.C: New test.
From-SVN: r30617
parent
88b4335f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
0 deletions
+71
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.other/warn4.C
+67
-0
No files found.
gcc/testsuite/ChangeLog
View file @
19a027a0
1999-11-22 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/warn4.C: New test.
1999-11-22 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.eh/cleanup2.C: New test.
* g++.old-deja/g++.ext/pretty2.C: New test.
* g++.old-deja/g++.ext/pretty3.C: New test.
...
...
gcc/testsuite/g++.old-deja/g++.other/warn4.C
0 → 100644
View file @
19a027a0
// Build don't link:
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>
// make sure we only warn on assigning a negative (signed) value
// to an unsigned type, and don't warn just if the unsigned value
// happens to have the top bit set.
typedef
unsigned
U
;
void
fn
(
unsigned
);
void
fu
()
{
unsigned
s1
=
-
1u
;
unsigned
s2
(
-
1u
);
unsigned
volatile
s3
=
-
1u
;
unsigned
const
s4
=
-
1u
;
unsigned
const
&
s5
(
-
1u
);
s1
=
-
1u
;
fn
(
-
1u
);
}
void
fU
()
{
U
s1
=
-
1u
;
U
s2
(
-
1u
);
U
volatile
s3
=
-
1u
;
U
const
s4
=
-
1u
;
U
const
&
s5
(
-
1u
);
s1
=
-
1u
;
fn
(
-
1u
);
}
void
fs
()
{
unsigned
s1
=
-
1
;
// WARNING - initialization
unsigned
s2
(
-
1
);
// WARNING - initialization
unsigned
volatile
s3
=
-
1
;
// WARNING - initialization
unsigned
const
s4
=
-
1
;
// WARNING - initialization
unsigned
const
&
s5
(
-
1
);
// WARNING - initialization
s1
=
-
1
;
// WARNING - assignment
fn
(
-
1
);
// WARNING - passing
}
void
fss
()
{
unsigned
s1
=
-
(
-
1
);
unsigned
s2
(
-
(
-
1
));
unsigned
volatile
s3
=
-
(
-
1
);
unsigned
const
s4
=
-
(
-
1
);
unsigned
const
&
s5
(
-
(
-
1
));
s1
=
-
(
-
1
);
fn
(
-
(
-
1
));
}
void
fsz
()
{
unsigned
s1
=
-
0
;
unsigned
s2
(
-
0
);
unsigned
volatile
s3
=
-
0
;
unsigned
const
s4
=
-
0
;
unsigned
const
&
s5
(
-
0
);
s1
=
-
0
;
fn
(
-
0
);
}
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