Home | History | Annotate | Download | only in Headers
      1 // Common macros that we want to catch.
      2 #if PLATFORM(MAC)
      3 #endif
      4 #if CPU(X86)
      5 #endif
      6 #if OS(DARWIN)
      7 #endif
      8 #if COMPILER(CLANG)
      9 #endif
     10 #if ENABLE(FEATURE)
     11 #endif
     12 #if HAVE(FEATURE)
     13 #endif
     14 #if USE(FEATURE)
     15 #endif
     16 #if COMPILER_SUPPORTS(FEATURE)
     17 #endif
     18 #if COMPILER_QUIRK(FEATURE)
     19 #endif
     20 
     21 // Indented.
     22 #if 1
     23   #if PLATFORM(X)
     24   #endif
     25 #endif
     26 
     27 // Conditionals, we don't evalute. We just check for the existence of the macro.
     28 #if defined(ignored) && PLATFORM(X)
     29 #endif
     30