Remove some obsolete code that causes a gcc warning.
authorGeorge Koehler <xkernigh@netscape.net>
Mon, 16 Jan 2017 23:09:55 +0000 (18:09 -0500)
committerGeorge Koehler <xkernigh@netscape.net>
Mon, 16 Jan 2017 23:09:55 +0000 (18:09 -0500)
commite97116c0370426dc3568230df1e31d76a69ed39f
tree8a28154a2e37850f8a9ca2bf4464287d2463f963
parentc471f617b7d8ddc48bc6faad1425678ec6353ee1
Remove some obsolete code that causes a gcc warning.

In my OpenBSD/amd64 system, the code becomes

    if (0)
        outname.on_valu &= ~(((0xFFFFFFFF)<<32)<<32);

The 0xFFFFFFFF is a 32-bit int, so the left shift by 32 is out of
range and causes the gcc warning.

The intent might be to clear any sign-extended bits, if the assignment
outname.on_valu = valu did sign extension.  Old C had no unsigned
long, so .on_valu would have been long.  The code is obsolete because
h/out.h now declares .on_valu as uint32_t.
mach/proto/as/comm6.c