From: Alexey Bataev Date: Fri, 8 Mar 2019 20:48:54 +0000 (+0000) Subject: [OPENMP]Remove debug service variable. X-Git-Tag: llvmorg-10-init~10393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b68c72f771bfe18e565a30bea0d5d0c5d530cf8;p=platform%2Fupstream%2Fllvm.git [OPENMP]Remove debug service variable. Removed not required service variable for the debug info. llvm-svn: 355729 --- diff --git a/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp b/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp index 5eaa0f0..90799ed 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp @@ -4958,20 +4958,6 @@ static std::pair getSMsBlocksPerSM(CodeGenModule &CGM) { } void CGOpenMPRuntimeNVPTX::clear() { - if (CGDebugInfo *DI = CGM.getModuleDebugInfo()) - if (CGM.getCodeGenOpts().getDebugInfo() >= - codegenoptions::LimitedDebugInfo) { - ASTContext &C = CGM.getContext(); - auto *VD = VarDecl::Create( - C, C.getTranslationUnitDecl(), SourceLocation(), SourceLocation(), - &C.Idents.get("_$_"), C.IntTy, /*TInfo=*/nullptr, SC_Static); - auto *Var = cast( - CGM.CreateRuntimeVariable(CGM.IntTy, "_$_")); - Var->setInitializer(llvm::ConstantInt::getNullValue(CGM.IntTy)); - Var->setLinkage(llvm::GlobalVariable::CommonLinkage); - CGM.addCompilerUsedGlobal(Var); - DI->EmitGlobalVariable(Var, VD); - } if (!GlobalizedRecords.empty()) { ASTContext &C = CGM.getContext(); llvm::SmallVector GlobalRecs; diff --git a/clang/test/OpenMP/nvptx_target_firstprivate_codegen.cpp b/clang/test/OpenMP/nvptx_target_firstprivate_codegen.cpp index c99b43c..2c15eb6 100644 --- a/clang/test/OpenMP/nvptx_target_firstprivate_codegen.cpp +++ b/clang/test/OpenMP/nvptx_target_firstprivate_codegen.cpp @@ -17,8 +17,7 @@ struct TT { // TCHECK-DAG: [[TTII:%.+]] = type { i32, i32 } // TCHECK-DAG: [[S1:%.+]] = type { double } -// TCHECK: @__omp_offloading_firstprivate__{{.+}}_e_l28 = internal addrspace(4) global [[TTII]] zeroinitializer -// TCHECK: @{{.*}}_$_{{.*}} = common global i32 0, !dbg !{{[0-9]+}} +// TCHECK: @__omp_offloading_firstprivate__{{.+}}_e_l27 = internal addrspace(4) global [[TTII]] zeroinitializer int foo(int n, double *ptr) { int a = 0; short aa = 0;