Sha256: b08fcc5040b5103ff2d8a9449f54d76e46dab5450b3e658d9a16dd9b6014d8d2

Contents?: true

Size: 654 Bytes

Versions: 3

Compression:

Stored size: 654 Bytes

Contents

extern int not3(int);
extern int bytes(int);
extern long long shr32(long long);
extern double double5(void);
extern int longbytes(void);
extern int intbytes(void);

int main(int argc,char **argv)
{
  if (intbytes() != sizeof(int)) return 100;
  if (longbytes() != sizeof(long)) return 100;

  if (not3(3)) return 100;

  /* on ppc32, gcc -mpowerpc64 produces SIGILL for >>32 */
  if (!not3(shr32(1))) return 100;

  /* on pentium 1, gcc -march=pentium2 produces SIGILL for (...+7)/8 */
  if (bytes(not3(1)) != 1) return 100;

  /* on pentium 1, gcc -march=prescott produces SIGILL for double comparison */
  if (double5() < 0) return 100;

  return 0;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_nacl-0.1.2 ext/ruby_nacl/NaCl/okcompilers/main.c
ruby_nacl-0.1.1 ext/ruby_nacl/NaCl/okcompilers/main.c
ruby_nacl-0.1.0 ext/ruby_nacl/NaCl/okcompilers/main.c