* [PATCH] memorder: Silence compiler warnings in litmus tests
@ 2017-09-04 15:05 Akira Yokosawa
2017-09-04 16:58 ` Paul E. McKenney
0 siblings, 1 reply; 4+ messages in thread
From: Akira Yokosawa @ 2017-09-04 15:05 UTC (permalink / raw)
To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa
From 410b1edcf1255563371b9b9bc8b54f10b3125090 Mon Sep 17 00:00:00 2001
From: Akira Yokosawa <akiyks@gmail.com>
Date: Mon, 4 Sep 2017 23:35:06 +0900
Subject: [PATCH] memorder: Silence compiler warnings in litmus tests
Silence warnings from gcc:
C-MP+o-r+o-ctrl-o.c:
warning: 'r3' may be used uninitialized in this function
[-Wmaybe-uninitialized]
C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
warning: assignment makes pointer from integer without a cast
[-Wint-conversion]
C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
warning: cast from pointer to integer of different size
[-Wpointer-to-int-cast]
Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus | 2 +-
CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus | 6 +++---
CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus | 6 +++---
memorder/memorder.tex | 14 +++++++-------
4 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
index fe44072..82cf629 100644
--- a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
+++ b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
@@ -16,7 +16,7 @@ P0(int* x0, int* x1) {
P1(int* x0, int* x1) {
int r2;
- int r3;
+ int r3 = 0;
r2 = READ_ONCE(*x1);
if (r2 >= 0)
diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
index 1e0f1b7..23050e6 100644
--- a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
+++ b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
@@ -19,8 +19,8 @@ P0(int *x, int *y)
P1(int *y, int *z)
{
- int *r1;
- int *r2;
+ int r1;
+ int r2;
r1 = smp_load_acquire(y);
r2 = READ_ONCE(*z);
@@ -28,7 +28,7 @@ P1(int *y, int *z)
P2(int *z, int *x)
{
- int *r3;
+ int r3;
WRITE_ONCE(*z, 1);
smp_mb();
diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
index a71f1ac..527b373 100644
--- a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
+++ b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
@@ -18,8 +18,8 @@ P0(int *x, int *y)
P1(int *y, int *z)
{
- int *r1;
- int *r2;
+ int r1;
+ int r2;
r1 = smp_load_acquire(y);
r2 = READ_ONCE(*z);
@@ -27,7 +27,7 @@ P1(int *y, int *z)
P2(int *z, int *x)
{
- int *r3;
+ int r3;
WRITE_ONCE(*z, 1);
smp_mb();
diff --git a/memorder/memorder.tex b/memorder/memorder.tex
index 624f9a8..151af4e 100644
--- a/memorder/memorder.tex
+++ b/memorder/memorder.tex
@@ -1567,7 +1567,7 @@ P0(int* x0, int* x1) {
P1(int* x0, int* x1) {
int r2;
- int r3;
+ int r3 = 0;
r2 = READ_ONCE(*x1);
if (r2 >= 0)
@@ -2162,8 +2162,8 @@ P0(int *x, int *y)
P1(int *y, int *z)
{
- int *r1;
- int *r2;
+ int r1;
+ int r2;
r1 = smp_load_acquire(y);
r2 = READ_ONCE(*z);
@@ -2171,7 +2171,7 @@ P1(int *y, int *z)
P2(int *z, int *x)
{
- int *r3;
+ int r3;
WRITE_ONCE(*z, 1);
smp_mb();
@@ -2258,8 +2258,8 @@ P0(int *x, int *y)
P1(int *y, int *z)
{
- int *r1;
- int *r2;
+ int r1;
+ int r2;
r1 = smp_load_acquire(y);
r2 = READ_ONCE(*z);
@@ -2267,7 +2267,7 @@ P1(int *y, int *z)
P2(int *z, int *x)
{
- int *r3;
+ int r3;
WRITE_ONCE(*z, 1);
smp_mb();
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] memorder: Silence compiler warnings in litmus tests
2017-09-04 15:05 [PATCH] memorder: Silence compiler warnings in litmus tests Akira Yokosawa
@ 2017-09-04 16:58 ` Paul E. McKenney
2017-09-04 22:35 ` Akira Yokosawa
0 siblings, 1 reply; 4+ messages in thread
From: Paul E. McKenney @ 2017-09-04 16:58 UTC (permalink / raw)
To: Akira Yokosawa; +Cc: perfbook
On Tue, Sep 05, 2017 at 12:05:37AM +0900, Akira Yokosawa wrote:
> >From 410b1edcf1255563371b9b9bc8b54f10b3125090 Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Mon, 4 Sep 2017 23:35:06 +0900
> Subject: [PATCH] memorder: Silence compiler warnings in litmus tests
>
> Silence warnings from gcc:
>
> C-MP+o-r+o-ctrl-o.c:
> warning: 'r3' may be used uninitialized in this function
> [-Wmaybe-uninitialized]
> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> warning: assignment makes pointer from integer without a cast
> [-Wint-conversion]
> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> warning: cast from pointer to integer of different size
> [-Wpointer-to-int-cast]
>
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
Good catches, fixed, thank you!
I am clearly going to have train myself to scroll up beyond the
final-state histogram, aren't I?
Thanx, Paul
> ---
> CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus | 2 +-
> CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus | 6 +++---
> CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus | 6 +++---
> memorder/memorder.tex | 14 +++++++-------
> 4 files changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> index fe44072..82cf629 100644
> --- a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> +++ b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> @@ -16,7 +16,7 @@ P0(int* x0, int* x1) {
>
> P1(int* x0, int* x1) {
> int r2;
> - int r3;
> + int r3 = 0;
>
> r2 = READ_ONCE(*x1);
> if (r2 >= 0)
> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> index 1e0f1b7..23050e6 100644
> --- a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> @@ -19,8 +19,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -28,7 +28,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> index a71f1ac..527b373 100644
> --- a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> @@ -18,8 +18,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -27,7 +27,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> diff --git a/memorder/memorder.tex b/memorder/memorder.tex
> index 624f9a8..151af4e 100644
> --- a/memorder/memorder.tex
> +++ b/memorder/memorder.tex
> @@ -1567,7 +1567,7 @@ P0(int* x0, int* x1) {
>
> P1(int* x0, int* x1) {
> int r2;
> - int r3;
> + int r3 = 0;
>
> r2 = READ_ONCE(*x1);
> if (r2 >= 0)
> @@ -2162,8 +2162,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -2171,7 +2171,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> @@ -2258,8 +2258,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -2267,7 +2267,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> --
> 2.7.4
>
--
To unsubscribe from this list: send the line "unsubscribe perfbook" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at https://urldefense.proofpoint.com/v2/url?u=http-3A__vger.kernel.org_majordomo-2Dinfo.html&d=DwIBAg&c=jf_iaSHvJObTbx-siA1ZOg&r=ux41CW3B5BSVxDMRNRWyLbUmPebZc70Kq4AkfdiRGMI&m=buSAKCmyVChRbvIbC5pqfrs3MK6aPbJv2midOUInLkY&s=S8ysDKR7FYGRxmPSL7QpBhmGXmJeIFCz8LL7uOlscv0&e=
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] memorder: Silence compiler warnings in litmus tests
2017-09-04 16:58 ` Paul E. McKenney
@ 2017-09-04 22:35 ` Akira Yokosawa
2017-09-06 2:33 ` Paul E. McKenney
0 siblings, 1 reply; 4+ messages in thread
From: Akira Yokosawa @ 2017-09-04 22:35 UTC (permalink / raw)
To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa
On 2017/09/04 09:58:27 -0700, Paul E. McKenney wrote:
> On Tue, Sep 05, 2017 at 12:05:37AM +0900, Akira Yokosawa wrote:
>> >From 410b1edcf1255563371b9b9bc8b54f10b3125090 Mon Sep 17 00:00:00 2001
>> From: Akira Yokosawa <akiyks@gmail.com>
>> Date: Mon, 4 Sep 2017 23:35:06 +0900
>> Subject: [PATCH] memorder: Silence compiler warnings in litmus tests
>>
>> Silence warnings from gcc:
>>
>> C-MP+o-r+o-ctrl-o.c:
>> warning: 'r3' may be used uninitialized in this function
>> [-Wmaybe-uninitialized]
>> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
>> warning: assignment makes pointer from integer without a cast
>> [-Wint-conversion]
>> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
>> warning: cast from pointer to integer of different size
>> [-Wpointer-to-int-cast]
>>
>> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
>
> Good catches, fixed, thank you!
>
> I am clearly going to have train myself to scroll up beyond the
> final-state histogram, aren't I?
;-)
I noticed these warnings when I cross compiled on PPC.
You can see warnings (without executing) on x86 by:
$ make cross-x86
$ cd X86
$ sh comp.sh
Thanks, Akira
>
> Thanx, Paul
>
>> ---
>> CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus | 2 +-
>> CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus | 6 +++---
>> CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus | 6 +++---
>> memorder/memorder.tex | 14 +++++++-------
>> 4 files changed, 14 insertions(+), 14 deletions(-)
>>
>> diff --git a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
>> index fe44072..82cf629 100644
>> --- a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
>> +++ b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
>> @@ -16,7 +16,7 @@ P0(int* x0, int* x1) {
>>
>> P1(int* x0, int* x1) {
>> int r2;
>> - int r3;
>> + int r3 = 0;
>>
>> r2 = READ_ONCE(*x1);
>> if (r2 >= 0)
>> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
>> index 1e0f1b7..23050e6 100644
>> --- a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
>> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
>> @@ -19,8 +19,8 @@ P0(int *x, int *y)
>>
>> P1(int *y, int *z)
>> {
>> - int *r1;
>> - int *r2;
>> + int r1;
>> + int r2;
>>
>> r1 = smp_load_acquire(y);
>> r2 = READ_ONCE(*z);
>> @@ -28,7 +28,7 @@ P1(int *y, int *z)
>>
>> P2(int *z, int *x)
>> {
>> - int *r3;
>> + int r3;
>>
>> WRITE_ONCE(*z, 1);
>> smp_mb();
>> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
>> index a71f1ac..527b373 100644
>> --- a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
>> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
>> @@ -18,8 +18,8 @@ P0(int *x, int *y)
>>
>> P1(int *y, int *z)
>> {
>> - int *r1;
>> - int *r2;
>> + int r1;
>> + int r2;
>>
>> r1 = smp_load_acquire(y);
>> r2 = READ_ONCE(*z);
>> @@ -27,7 +27,7 @@ P1(int *y, int *z)
>>
>> P2(int *z, int *x)
>> {
>> - int *r3;
>> + int r3;
>>
>> WRITE_ONCE(*z, 1);
>> smp_mb();
>> diff --git a/memorder/memorder.tex b/memorder/memorder.tex
>> index 624f9a8..151af4e 100644
>> --- a/memorder/memorder.tex
>> +++ b/memorder/memorder.tex
>> @@ -1567,7 +1567,7 @@ P0(int* x0, int* x1) {
>>
>> P1(int* x0, int* x1) {
>> int r2;
>> - int r3;
>> + int r3 = 0;
>>
>> r2 = READ_ONCE(*x1);
>> if (r2 >= 0)
>> @@ -2162,8 +2162,8 @@ P0(int *x, int *y)
>>
>> P1(int *y, int *z)
>> {
>> - int *r1;
>> - int *r2;
>> + int r1;
>> + int r2;
>>
>> r1 = smp_load_acquire(y);
>> r2 = READ_ONCE(*z);
>> @@ -2171,7 +2171,7 @@ P1(int *y, int *z)
>>
>> P2(int *z, int *x)
>> {
>> - int *r3;
>> + int r3;
>>
>> WRITE_ONCE(*z, 1);
>> smp_mb();
>> @@ -2258,8 +2258,8 @@ P0(int *x, int *y)
>>
>> P1(int *y, int *z)
>> {
>> - int *r1;
>> - int *r2;
>> + int r1;
>> + int r2;
>>
>> r1 = smp_load_acquire(y);
>> r2 = READ_ONCE(*z);
>> @@ -2267,7 +2267,7 @@ P1(int *y, int *z)
>>
>> P2(int *z, int *x)
>> {
>> - int *r3;
>> + int r3;
>>
>> WRITE_ONCE(*z, 1);
>> smp_mb();
>> --
>> 2.7.4
>>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] memorder: Silence compiler warnings in litmus tests
2017-09-04 22:35 ` Akira Yokosawa
@ 2017-09-06 2:33 ` Paul E. McKenney
0 siblings, 0 replies; 4+ messages in thread
From: Paul E. McKenney @ 2017-09-06 2:33 UTC (permalink / raw)
To: Akira Yokosawa; +Cc: perfbook
On Tue, Sep 05, 2017 at 07:35:40AM +0900, Akira Yokosawa wrote:
> On 2017/09/04 09:58:27 -0700, Paul E. McKenney wrote:
> > On Tue, Sep 05, 2017 at 12:05:37AM +0900, Akira Yokosawa wrote:
> >> >From 410b1edcf1255563371b9b9bc8b54f10b3125090 Mon Sep 17 00:00:00 2001
> >> From: Akira Yokosawa <akiyks@gmail.com>
> >> Date: Mon, 4 Sep 2017 23:35:06 +0900
> >> Subject: [PATCH] memorder: Silence compiler warnings in litmus tests
> >>
> >> Silence warnings from gcc:
> >>
> >> C-MP+o-r+o-ctrl-o.c:
> >> warning: 'r3' may be used uninitialized in this function
> >> [-Wmaybe-uninitialized]
> >> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> >> warning: assignment makes pointer from integer without a cast
> >> [-Wint-conversion]
> >> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> >> warning: cast from pointer to integer of different size
> >> [-Wpointer-to-int-cast]
> >>
> >> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> >
> > Good catches, fixed, thank you!
> >
> > I am clearly going to have train myself to scroll up beyond the
> > final-state histogram, aren't I?
>
> ;-)
>
> I noticed these warnings when I cross compiled on PPC.
> You can see warnings (without executing) on x86 by:
>
> $ make cross-x86
> $ cd X86
> $ sh comp.sh
Thank you for the tip!
Thanx, Paul
> Thanks, Akira
>
> >
> > Thanx, Paul
> >
> >> ---
> >> CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus | 2 +-
> >> CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus | 6 +++---
> >> CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus | 6 +++---
> >> memorder/memorder.tex | 14 +++++++-------
> >> 4 files changed, 14 insertions(+), 14 deletions(-)
> >>
> >> diff --git a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> >> index fe44072..82cf629 100644
> >> --- a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> >> +++ b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> >> @@ -16,7 +16,7 @@ P0(int* x0, int* x1) {
> >>
> >> P1(int* x0, int* x1) {
> >> int r2;
> >> - int r3;
> >> + int r3 = 0;
> >>
> >> r2 = READ_ONCE(*x1);
> >> if (r2 >= 0)
> >> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> >> index 1e0f1b7..23050e6 100644
> >> --- a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> >> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> >> @@ -19,8 +19,8 @@ P0(int *x, int *y)
> >>
> >> P1(int *y, int *z)
> >> {
> >> - int *r1;
> >> - int *r2;
> >> + int r1;
> >> + int r2;
> >>
> >> r1 = smp_load_acquire(y);
> >> r2 = READ_ONCE(*z);
> >> @@ -28,7 +28,7 @@ P1(int *y, int *z)
> >>
> >> P2(int *z, int *x)
> >> {
> >> - int *r3;
> >> + int r3;
> >>
> >> WRITE_ONCE(*z, 1);
> >> smp_mb();
> >> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> >> index a71f1ac..527b373 100644
> >> --- a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> >> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> >> @@ -18,8 +18,8 @@ P0(int *x, int *y)
> >>
> >> P1(int *y, int *z)
> >> {
> >> - int *r1;
> >> - int *r2;
> >> + int r1;
> >> + int r2;
> >>
> >> r1 = smp_load_acquire(y);
> >> r2 = READ_ONCE(*z);
> >> @@ -27,7 +27,7 @@ P1(int *y, int *z)
> >>
> >> P2(int *z, int *x)
> >> {
> >> - int *r3;
> >> + int r3;
> >>
> >> WRITE_ONCE(*z, 1);
> >> smp_mb();
> >> diff --git a/memorder/memorder.tex b/memorder/memorder.tex
> >> index 624f9a8..151af4e 100644
> >> --- a/memorder/memorder.tex
> >> +++ b/memorder/memorder.tex
> >> @@ -1567,7 +1567,7 @@ P0(int* x0, int* x1) {
> >>
> >> P1(int* x0, int* x1) {
> >> int r2;
> >> - int r3;
> >> + int r3 = 0;
> >>
> >> r2 = READ_ONCE(*x1);
> >> if (r2 >= 0)
> >> @@ -2162,8 +2162,8 @@ P0(int *x, int *y)
> >>
> >> P1(int *y, int *z)
> >> {
> >> - int *r1;
> >> - int *r2;
> >> + int r1;
> >> + int r2;
> >>
> >> r1 = smp_load_acquire(y);
> >> r2 = READ_ONCE(*z);
> >> @@ -2171,7 +2171,7 @@ P1(int *y, int *z)
> >>
> >> P2(int *z, int *x)
> >> {
> >> - int *r3;
> >> + int r3;
> >>
> >> WRITE_ONCE(*z, 1);
> >> smp_mb();
> >> @@ -2258,8 +2258,8 @@ P0(int *x, int *y)
> >>
> >> P1(int *y, int *z)
> >> {
> >> - int *r1;
> >> - int *r2;
> >> + int r1;
> >> + int r2;
> >>
> >> r1 = smp_load_acquire(y);
> >> r2 = READ_ONCE(*z);
> >> @@ -2267,7 +2267,7 @@ P1(int *y, int *z)
> >>
> >> P2(int *z, int *x)
> >> {
> >> - int *r3;
> >> + int r3;
> >>
> >> WRITE_ONCE(*z, 1);
> >> smp_mb();
> >> --
> >> 2.7.4
> >>
> >
> >
>
--
To unsubscribe from this list: send the line "unsubscribe perfbook" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at https://urldefense.proofpoint.com/v2/url?u=http-3A__vger.kernel.org_majordomo-2Dinfo.html&d=DwIBAg&c=jf_iaSHvJObTbx-siA1ZOg&r=ux41CW3B5BSVxDMRNRWyLbUmPebZc70Kq4AkfdiRGMI&m=Sb2C9OumgkzFn7qaI1vmWXpq6IB4zDco7fktabJ8L3Y&s=9fILY_K6te9XCcykZKVQjBge4js8zXr8iL7mMkBy7EY&e=
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-09-06 2:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-04 15:05 [PATCH] memorder: Silence compiler warnings in litmus tests Akira Yokosawa
2017-09-04 16:58 ` Paul E. McKenney
2017-09-04 22:35 ` Akira Yokosawa
2017-09-06 2:33 ` Paul E. McKenney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox