1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Use doxygen style comments.

llvm-svn: 269082
This commit is contained in:
Peter Collingbourne 2016-05-10 17:35:30 +00:00
parent 9c45cac6e6
commit 2564c78801

View File

@ -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);