Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Apr 2010 00:02:59 -0700
From:      Yuri <yuri@rawbw.com>
To:        freebsd-questions@freebsd.org
Subject:   Why system gcc that is 4.2.1 produces different code than gcc-4.2.1 compiled from sources?
Message-ID:  <4BD3E923.9030606@rawbw.com>

next in thread | raw e-mail | index | archive | help
I ran this simple example:

#include <stdlib.h>
#include <stdio.h>

int fib(int AnArg) {
  if (AnArg <= 2) return (1);
  return (fib(AnArg-1)+fib(AnArg-2));
}

int main(int argc, char* argv[]) {
  int n = atoi(argv[1]);
  printf("fib(%i)=%i\n", n, fib(n));
}

through system gcc and gcc built from sources. Both are 4.2.1. Options: -O3.

Average runtime with the argument 45 is quite different: system gcc is 
3.650s and gcc-4.2.1 from sources is 3.740.
CPU: Intel(R) Core(TM) i7 CPU       @ 9200 @ 2.67GHz

Yuri



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4BD3E923.9030606>