From: Peter Collingbourne Date: Tue, 10 May 2016 17:35:30 +0000 (+0000) Subject: Use doxygen style comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7feafb873bea5c2b31ec06f9c5250743c38af70;p=llvm Use doxygen style comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269082 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/BitSetUtils.h b/include/llvm/Analysis/BitSetUtils.h index 0e2b22f6dc2..8f799482b80 100644 --- a/include/llvm/Analysis/BitSetUtils.h +++ b/include/llvm/Analysis/BitSetUtils.h @@ -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 &DevirtCalls, SmallVectorImpl &Assumes, CallInst *CI);