оптимизация рекурсии бесконечного хвоста

#include <iostream> 

int foo(int i){ 
     return foo(i + 1);
} 

int main(int argc,char * argv[]){ 
     if(argc != 2){ 
         return 1; 
     } 
     std::cout << foo(std::atoi(argv[1])) << std::endl; 
} 

% clang ++ -O2 test.cc

% времени ./a.out 42

1490723512

./a.out 42 0.00s пользователь 0.00s система 69% процессор 0.004 всего

% времени ./a.out 42

1564058296

./a.out 42 0.00s пользователь 0.00s система 56% процессор 0.006 всего

% g ++ -O2 test.cc

% ./a.out 42 # реинкурсия infinte

^ C

% clang++ --version 
clang version 3.3 (tags/RELEASE_33/final) 
Target: x86_64-apple-darwin12.4.0 
Thread model: posix 
% g++ --version 
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00) 
Copyright (C) 2007 Free Software Foundation, Inc. 
This is free software; see the source for copying conditions.  There is NO 
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 

Так это ошибка или особенность clang ++?

Ответы на вопрос(1)

Ваш ответ на вопрос