summaryrefslogtreecommitdiff
path: root/include/llvm/Support/CallSite.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/CallSite.h')
-rw-r--r--include/llvm/Support/CallSite.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 5a5920962e..faf6d0d278 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -23,6 +23,7 @@ public:
CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; }
/// getInstruction - Return the instruction this call site corresponds to
+ ///
Instruction *getInstruction() const { return I; }
/// getCalledValue - Return the pointer to function that is being called...