[llvm] r269082 - Use doxygen style comments.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Tue May 10 10:35:30 PDT 2016


Author: pcc
Date: Tue May 10 12:35:30 2016
New Revision: 269082

URL: http://llvm.org/viewvc/llvm-project?rev=269082&view=rev
Log:
Use doxygen style comments.

Modified:
    llvm/trunk/include/llvm/Analysis/BitSetUtils.h

Modified: llvm/trunk/include/llvm/Analysis/BitSetUtils.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/BitSetUtils.h?rev=269082&r1=269081&r2=269082&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/BitSetUtils.h (original)
+++ llvm/trunk/include/llvm/Analysis/BitSetUtils.h Tue May 10 12:35:30 2016
@@ -20,16 +20,16 @@
 
 namespace llvm {
 
-// A call site that could be devirtualized.
+/// A call site that could be devirtualized.
 struct DevirtCallSite {
-  // The offset from the address point to the virtual function.
+  /// The offset from the address point to the virtual function.
   uint64_t Offset;
-  // The call site itself.
+  /// The call site itself.
   CallSite CS;
 };
 
-// Given a call to the intrinsic @llvm.bitset.test, find all devirtualizable
-// call sites based on the call and return them in DevirtCalls.
+/// Given a call to the intrinsic @llvm.bitset.test, find all devirtualizable
+/// call sites based on the call and return them in DevirtCalls.
 void findDevirtualizableCalls(SmallVectorImpl<DevirtCallSite> &DevirtCalls,
                               SmallVectorImpl<CallInst *> &Assumes,
                               CallInst *CI);




More information about the llvm-commits mailing list