Menu

#129 A statement without following semicolon

Developer
closed-fixed
5
2009-10-17
2009-10-13
No

When I compile atlas-3.9.15 on cygwin-1.7 with gcc-4.3.4, I got an error from tune/blas/gemm/mmksearch_sse.c.

"return" statement at line 574 doesn't end with a semicolon.

--- origsrc/ATLAS/tune/blas/gemm/mmksearch_sse.c
+++ src/ATLAS/tune/blas/gemm/mmksearch_sse.c
@@ -571,7 +571,7 @@
char ln[64];

#ifndef ATL_SSE3 /* generator needs at least SSE3 to work */
- return(NULL)
+ return(NULL);
#endif

/*

Discussion

  • R. Clint Whaley

    R. Clint Whaley - 2009-10-13
    • labels: 360151 -->
    • assigned_to: nobody --> rwhaley
    • status: open --> open-accepted
     
  • R. Clint Whaley

    R. Clint Whaley - 2009-10-13
    • labels: --> Install problem
    • milestone: --> Developer
     
  • R. Clint Whaley

    R. Clint Whaley - 2009-10-13

    Thanks, I confirm the bug. I have fixed it in the basefile, so it will be fixed in the next developer release.

     
  • R. Clint Whaley

    R. Clint Whaley - 2009-10-17

    fixed in 3.9.16

     
  • R. Clint Whaley

    R. Clint Whaley - 2009-10-17
    • status: open-accepted --> closed-fixed
     

Log in to post a comment.