diff options
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp index c50102f1f0f..b4da53fd974 100644 --- a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp @@ -593,7 +593,8 @@ void GCOVProfiler::emitProfileNotes() {              continue;            // Artificial lines such as calls to the global constructors. -          if (Loc.getLine() == 0) continue; +          if (Loc.getLine() == 0 || Loc.isImplicitCode()) +            continue;            if (Line == Loc.getLine()) continue;            Line = Loc.getLine(); | 

