Go to the documentation of this file.
23#ifndef GINAC_COMPILER_H
24#define GINAC_COMPILER_H
27#define unlikely(cond) __builtin_expect((cond), 0)
28#define likely(cond) __builtin_expect((cond), 1)
29#define attribute_deprecated __attribute__ ((deprecated))
30#define attribute_pure __attribute__((__pure__))
32#define unlikely(cond) (cond)
33#define likely(cond) (cond)
34#define attribute_deprecated
This page is part of the GiNaC
developer's reference. It was generated automatically by doxygen. For
an introduction, see the tutorial.