FreeBSD Bugzilla – Attachment 160361 Details for
Bug 202662
Fix lang/go build with clang 3.7.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix signed left-shifting in src/cmd/6c/txt.c
patch-src__cmd__6c__txt.c (text/plain), 565 bytes, created by
Dimitry Andric
on 2015-08-25 20:14:29 UTC
(
hide
)
Description:
Fix signed left-shifting in src/cmd/6c/txt.c
Filename:
MIME Type:
Creator:
Dimitry Andric
Created:
2015-08-25 20:14:29 UTC
Size:
565 bytes
patch
obsolete
>--- src/cmd/6c/txt.c.orig 2015-02-18 05:38:34.000000000 +0100 >+++ src/cmd/6c/txt.c 2015-08-25 22:04:04.768078000 +0200 >@@ -992,7 +992,7 @@ gmove(Node *f, Node *t) > f->vconst &= 0xffff; > if(f->vconst & 0x8000){ > f->vconst |= 0xffff0000; >- f->vconst |= (vlong)~0 << 32; >+ f->vconst |= (uvlong)~0 << 32; > } > a = AMOVL; > } >@@ -1042,7 +1042,7 @@ gmove(Node *f, Node *t) > f->vconst &= 0xff; > if(f->vconst & 0x80){ > f->vconst |= 0xffffff00; >- f->vconst |= (vlong)~0 << 32; >+ f->vconst |= (uvlong)~0 << 32; > } > a = AMOVQ; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 202662
:
160360
| 160361