save
[cdsspec-compiler.git] / benchmark / chase-lev-deque-bugfix / main.c
index 7fb831f3d55d08568ba8db5a986146f173e1de21..782539e9dd43b6ab4e427b8cb780546b8119d236 100644 (file)
@@ -14,9 +14,6 @@ int b;
 int c;
 
 static void task(void * param) {
-       // FIXME: Add the following take() will expose an Uninitialzied Load bug...
-       //a=take(q);
-
        a=steal(q);
 }
 
@@ -48,7 +45,7 @@ int user_main(int argc, char **argv)
                correct=false;
        if (!correct)
                printf("a=%d b=%d c=%d\n",a,b,c);
-       MODEL_ASSERT(correct);
+       //MODEL_ASSERT(correct);
 
        return 0;
 }