diff options
Diffstat (limited to 'contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp')
| -rw-r--r-- | contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp b/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp index ff9e7b50ed5c..35dd9eb0a478 100644 --- a/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp +++ b/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp @@ -8,7 +8,7 @@  //===----------------------------------------------------------------------===//  //  /// \file -/// \brief This is AMDGPU specific replacement of the standard inliner. +/// This is AMDGPU specific replacement of the standard inliner.  /// The main purpose is to account for the fact that calls not only expensive  /// on the AMDGPU, but much more expensive if a private memory pointer is  /// passed to a function as an argument. In this situation, we are unable to @@ -161,8 +161,8 @@ static bool isWrapperOnlyCall(CallSite CS) {        return false;      }      if (isa<ReturnInst>(*std::next(I->getIterator()))) { -      DEBUG(dbgs() << "    Wrapper only call detected: " -                   << Callee->getName() << '\n'); +      LLVM_DEBUG(dbgs() << "    Wrapper only call detected: " +                        << Callee->getName() << '\n');        return true;      }    }  | 
