]> granicus.if.org Git - llvm/commitdiff
Use doxygen style comments.
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 10 May 2016 17:35:30 +0000 (17:35 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 10 May 2016 17:35:30 +0000 (17:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269082 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/BitSetUtils.h

index 0e2b22f6dc2dd41b091475af2a92b016668b92bb..8f799482b8016dd97b4a583506359e9bbee17cbe 100644 (file)
 
 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);