diff options
-rw-r--r-- | include/llvm/Support/CallSite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index 544c7d7761..16d862fae5 100644 --- a/include/llvm/Support/CallSite.h +++ b/include/llvm/Support/CallSite.h @@ -170,7 +170,7 @@ public: /// list for a call site. arg_iterator arg_begin() const { assert(getInstruction() && "Not a call or invoke instruction!"); - // Skip non-arguments + // Skip non-arguments return getInstruction()->op_begin() + getArgumentOffset(); } |