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