Home | History | Annotate | Download | only in docs

Lines Matching full:debugflag

881   // DebugFlag.h - Get access to the '-debug' command line option
884 // DebugFlag - This boolean is set to true if the '-debug' command line option
888 extern bool DebugFlag;
897 #define DEBUG(X) do { if (DebugFlag) { X; } } while (0)
901 ``DebugFlag`` explicitly if they want to. Now we just need to be able to set
902 the ``DebugFlag`` boolean when the option is set. To do this, we pass an
908 bool DebugFlag; // the actual value
910 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
915 attribute, so that ``DebugFlag`` is automatically set.
1729 library. Examples of this include the ``llvm::DebugFlag`` exported by the