[llvm] r343914 - Wdocumentation fix
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 6 04:09:16 PDT 2018
Author: rksimon
Date: Sat Oct 6 04:09:15 2018
New Revision: 343914
URL: http://llvm.org/viewvc/llvm-project?rev=343914&view=rev
Log:
Wdocumentation fix
Modified:
llvm/trunk/include/llvm/IR/PassTimingInfo.h
Modified: llvm/trunk/include/llvm/IR/PassTimingInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PassTimingInfo.h?rev=343914&r1=343913&r2=343914&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PassTimingInfo.h (original)
+++ llvm/trunk/include/llvm/IR/PassTimingInfo.h Sat Oct 6 04:09:15 2018
@@ -60,7 +60,8 @@ class TimePassesHandler {
/// Map that counts invocations of passes, for use in UniqPassID construction.
StringMap<unsigned> PassIDCountMap;
- SmallVector<Timer *, 8> TimerStack; //< Stack of currently active timers.
+ /// Stack of currently active timers.
+ SmallVector<Timer *, 8> TimerStack;
bool Enabled;
More information about the llvm-commits
mailing list