Last change
on this file since 2e0bb92 was 10b5970, checked in by Michael Brooks <mlbrooks@…>, 9 months ago |
Fix many test-suite- and libcfa-caused unused variable warnings.
In scope are easy fixes among tests whose sole warnings were unused variable. Reduces the wflags lax list by 40%.
|
-
Property mode
set to
100644
|
File size:
471 bytes
|
Rev | Line | |
---|
[d168fefe] | 1 | #include <kernel.hfa>
|
---|
| 2 | #include <thread.hfa>
|
---|
| 3 |
|
---|
| 4 | static cluster * the_cluster;
|
---|
| 5 |
|
---|
| 6 | thread MyThread {};
|
---|
| 7 | void ?{}( MyThread & this ) {
|
---|
| 8 | ((thread&)this){ *the_cluster };
|
---|
| 9 | }
|
---|
| 10 |
|
---|
[10b5970] | 11 | void main( MyThread & ) {
|
---|
[d168fefe] | 12 | for(50) {
|
---|
| 13 | yield();
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | struct MyProc {
|
---|
| 18 | processor self;
|
---|
| 19 | };
|
---|
| 20 |
|
---|
| 21 | void ?{}( MyProc & this ) {
|
---|
| 22 | (this.self){ *the_cluster };
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | int main() {
|
---|
| 26 | cluster cl;
|
---|
| 27 | the_cluster = &cl;
|
---|
| 28 | {
|
---|
| 29 | MyProc procs[4];
|
---|
| 30 | {
|
---|
| 31 | MyThread threads[17];
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
[66812dd] | 34 | printf( "done\n" ); // non-empty .expect file
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.