http://llvm.org/bugs/show_bug.cgi?id=15191

Bill Wendling <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |FIXED

--- Comment #2 from Bill Wendling <[email protected]> ---
Fixed:

Compiler-RT change:

Sending        lib/profile/GCDAProfiling.c
Transmitting file data .
Committed revision 177337.

LLVM change:

Sending        Instrumentation/GCOVProfiling.cpp
Transmitting file data .
Committed revision 177340.


Note: With the example below, there will still be no lines executed in main.c,
because the 'foo()' function never returns (and thus never gets counted). To
show that it is indeed being run, add this to the top of `main()':

  for (int i = 0; i < 1; ++i)
    printf("hello world!\n");

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to