Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 260995 | Differences between
and this patch

Collapse All | Expand All

(-)gromacs-4.0.4-orig/include/gmx_cyclecounter.h (-1 / +1 lines)
Lines 408-414 Link Here
408
static __inline__ gmx_cycles_t gmx_cycles_read(void)
408
static __inline__ gmx_cycles_t gmx_cycles_read(void)
409
{ 
409
{ 
410
    /* gcc inline assembly on sparc v9 */
410
    /* gcc inline assembly on sparc v9 */
411
    ticks ret;
411
    unsigned long ret;
412
    __asm__("rd %%tick, %0" : "=r" (ret));
412
    __asm__("rd %%tick, %0" : "=r" (ret));
413
    return ret;  
413
    return ret;  
414
}
414
}

Return to bug 260995