Displaying 1 result from an estimated 1 matches for "548pf".
Did you mean:
548f
2002 Dec 14
2
[LLVMdev] really long time to compile
...put.
Here's what I do:
% time llvm-gcc -c sha24.c
56.840u 0.050s 1:07.05 84.8% 0+0k 0+0io 1050pf+0w
% ls -l sha24.o
-rw-r--r-- 1 brg brg 5784 2002-12-14 07:43 sha24.o
The problem goes away if I use -S:
% time llvm-gcc -S sha24.c
0.060u 0.010s 0:00.09 77.7% 0+0k 0+0io 548pf+0w
--
gaeke at uiuc.edu
-------------- next part --------------
struct sha_ctx
{
unsigned int A;
unsigned int B;
unsigned int C;
unsigned int D;
unsigned int E;
unsigned int total[2];
unsigned int buflen;
char buffer[128];
};
void
sha_process_block (const void *buffer, unsigned lo...