Fix reading Time zone rules using Julian days (#17672)
[platform/upstream/coreclr.git] / src / jit / cpp.hint
1 // cpp.hint for the JIT
2 //
3 // These hints are designed to improve the IntelliSense experience when browsing the JIT codebase.
4 // Note that they don't need to be correct code; they just need to fix the IntelliSense problems that
5 // exist without the hint.
6 //
7 // See the article on hints in MSDN for more information on their necessity and use:
8 //    http://msdn.microsoft.com/en-us/library/dd997977.aspx
9
10 #define foreach_treenode_execution_order(__node, __stmt) for (;;)
11
12 #define foreach_block(__compiler, __block) for (;;)
13
14 #define FOREACH_REGISTER_FILE(file) for (;;)
15
16 // From jit.h
17
18 #define DECLARE_TYPED_ENUM(tag,baseType) enum tag : baseType
19
20 #define END_DECLARE_TYPED_ENUM(tag,baseType) ;
21
22 #define INDEBUG(x)          x
23 #define INDEBUG_COMMA(x)    x,
24 #define DEBUGARG(x)         , x
25
26 #define PROTO_ARG(x)   x ,
27 #define PROTO_ARGL(x)  , x