Project

General

Profile

Download (246 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#ifndef _ASM_COMPILER_H
2
#define _ASM_COMPILER_H
3

    
4
#define likely(x)       __builtin_expect(!!(x), 1)
5
#define unlikely(x)     __builtin_expect(!!(x), 0)
6

    
7
#define __unused	__attribute__((unused))
8
#define __noreturn	__attribute__((noreturn))
9

    
10
#endif
(4-4/9)
Add picture from clipboard (Maximum size: 48.8 MB)