Building a source distribution using autotools adds GPL-licenced files into the the sources. Although redistribution of theses files is explicitly allowed with an exception, these are not used by Polly which uses a CMake replacement. Use the direct source checkout instead (replacing the output of 'make dist'). Some m4 scripts with the same licence are also included in isl/ppcg repository. Removing them renders the autotools-based build scipts inoperable, so remove the autotools build system altogether.
13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
#Unsigned integer initialization. Assumes sizeof(long) == 8.
|
|
initu:0,0:0
|
|
initu:0,18446744073709551615:18446744073709551615
|
|
initu:0,567:567
|
|
|
|
#Signed integer initialization Assumes sizeof(long) == 8.
|
|
initv:0,0:0
|
|
initv:0,-1:-1
|
|
initv:0,9223372036854775807:9223372036854775807
|
|
initv:0,-9223372036854775808:-9223372036854775808
|
|
initv:0,4324:4324
|
|
|