source: proiecte/swift/trunk/include/swift_compiler.h @ 176

Last change on this file since 176 was 176, checked in by (none), 14 years ago
  • imported repo from "guagal"
File size: 313 bytes
Line 
1/*
2 * swift_compiler.h
3 *
4 * (c) 2009 Ionut Rosoiu <ionut.rosoiu@gmail.com>
5 *
6 */
7
8#ifndef SWIFT_COMPILER_H_
9#define SWIFT_COMPILER_H_
10
11#ifdef GNU_COMPILER
12        #define NO_INLINE __attribute__((noinline))
13        #define HOT __attribute__((hot))
14#else
15        #define NO_INLINE
16        #define HOT
17#endif
18
19#endif /* SWIFT_COMPILER_H_ */
Note: See TracBrowser for help on using the repository browser.