cregit-Linux how code gets into the kernel

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

/* SPDX-License-Identifier: GPL-2.0 */
#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 Roy3397.06%150.00%
Greg Kroah-Hartman12.94%150.00%
Total34100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.