@@ -26,7 +26,7 @@ namespace llvm {
2626 class DILocation ;
2727 class Function ;
2828
29- #if LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
29+ #if LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
3030 // Used to represent different "kinds" of DebugLoc, expressing that the
3131 // instruction it is part of is either normal and should contain a valid
3232 // DILocation, or otherwise describing the reason why the instruction does
@@ -90,7 +90,7 @@ namespace llvm {
9090 using DebugLocTrackingRef = DILocAndCoverageTracking;
9191#else
9292 using DebugLocTrackingRef = TrackingMDNodeRef;
93- #endif // LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
93+ #endif // LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
9494
9595 // / A debug info location.
9696 // /
@@ -117,12 +117,12 @@ namespace llvm {
117117 // / IR.
118118 LLVM_ABI explicit DebugLoc (const MDNode *N);
119119
120- #if LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
120+ #if LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
121121 DebugLoc (DebugLocKind Kind) : Loc(Kind) {}
122122 DebugLocKind getKind () const { return Loc.Kind ; }
123123#endif
124124
125- #if LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
125+ #if LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
126126 static inline DebugLoc getTemporary () {
127127 return DebugLoc (DebugLocKind::Temporary);
128128 }
@@ -140,7 +140,7 @@ namespace llvm {
140140 static inline DebugLoc getUnknown () { return DebugLoc (); }
141141 static inline DebugLoc getCompilerGenerated () { return DebugLoc (); }
142142 static inline DebugLoc getDropped () { return DebugLoc (); }
143- #endif // LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
143+ #endif // LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
144144
145145 // / When two instructions are combined into a single instruction we also
146146 // / need to combine the original locations into a single location.
@@ -174,7 +174,7 @@ namespace llvm {
174174 DebugLoc orElse (DebugLoc Other) const {
175175 if (*this )
176176 return *this ;
177- #if LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
177+ #if LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
178178 if (Other)
179179 return Other;
180180 if (getKind () != DebugLocKind::Normal)
@@ -184,7 +184,7 @@ namespace llvm {
184184 return *this ;
185185#else
186186 return Other;
187- #endif // LLVM_ENABLE_DEBUGLOC_COVERAGE_TRACKING
187+ #endif // LLVM_ENABLE_DEBUGLOC_TRACKING_COVERAGE
188188 }
189189
190190 // / Get the underlying \a DILocation.
0 commit comments