cregit-Linux how code gets into the kernel

Release 4.11 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/assume.h

#ifndef ASSUME_H

#define ASSUME_H

/* Provide an assumption macro that can be disabled for gcc. */
#ifdef RUN

#define assume(x) \
	do { \
		/* Evaluate x to suppress warnings. */ \
                (void) (x); \
        } while (0)

#else

#define assume(x) __CPROVER_assume(x)
#endif

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Lance Roy33100.00%1100.00%
Total33100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.