On Wed, 2 Aug 2006, kamil Marcinkowski wrote:
> latest R-patched: also fails.
>
>> /usr/vac/bin/xlc_r -I../../src/extra/zlib -I../../src/extra/bzip2 -
>> I../../src/extra/pcre  -I. -I../../src/include -I../../src/include -
>> I/usr/local/include -DHAVE_CONFIG_H   -O -qstrict -c connections.c -
>> o connections.o
>> "connections.c", line 2732.18: 1506-052 (S) Duplicate case label
>> for value 4. Labels must be unique.
>> "connections.c", line 2750.18: 1506-052 (S) Duplicate case label
>> for value 4. Labels must be unique.
>> "connections.c", line 2935.18: 1506-052 (S) Duplicate case label
>> for value 4. Labels must be unique.
>> "connections.c", line 2979.18: 1506-052 (S) Duplicate case label
>> for value 4. Labels must be unique.


This looks as if sizeof short = sizeof int = 4, which is permitted by the 
C standard, but distinctly unusual.

If so, you could delete 
or #ifdef out the
   case sizeof(short):
lines to remove the duplication.

        -thomas

Thomas Lumley                   Assoc. Professor, Biostatistics
[EMAIL PROTECTED]       University of Washington, Seattle

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to