Revision a6c6f76c

b/block/vvfat.c
2462 2462
	    fail = -2;
2463 2463
	    break;
2464 2464
	case ACTION_WRITEOUT: {
2465
#ifndef NDEBUG
2466
            /* these variables are only used by assert() below */
2465 2467
	    direntry_t* entry = array_get(&(s->directory),
2466 2468
		    commit->param.writeout.dir_index);
2467 2469
	    uint32_t begin = begin_of_direntry(entry);
2468 2470
	    mapping_t* mapping = find_mapping_for_cluster(s, begin);
2471
#endif
2469 2472

  
2470 2473
	    assert(mapping);
2471 2474
	    assert(mapping->begin == begin);
b/linux-user/signal.c
412 412

  
413 413
    /* unreachable */
414 414
    assert(0);
415

  
415
    abort();
416 416
}
417 417

  
418 418
/* queue a signal so that it will be send to the virtual CPU as soon
b/qdict.c
195 195
        return qint_get_int(qobject_to_qint(obj));
196 196
    default:
197 197
        assert(0);
198
        return 0.0;
198 199
    }
199 200
}
200 201

  
b/tcg/tcg.c
27 27

  
28 28
#include "config.h"
29 29

  
30
#ifndef CONFIG_DEBUG_TCG
30
#if !defined(CONFIG_DEBUG_TCG) && !defined(NDEBUG)
31 31
/* define it to suppress various consistency checks (faster) */
32 32
#define NDEBUG
33 33
#endif

Also available in: Unified diff