diff options
| author | Dale Johannesen <dalej@apple.com> | 2008-04-25 21:16:07 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2008-04-25 21:16:07 +0000 |
| commit | da30ccbe9ac2ddec3841ef84ffd28bd055627f25 (patch) | |
| tree | 3809de9accc786c128b918699d2e006320b9ab6f | |
| parent | b3f346fa363330b0c3544502ba6dbd68ec8b6bd6 (diff) | |
change comments per review
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50300 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index f061d497ea..6bf06e77eb 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -8694,8 +8694,8 @@ Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) { return visitCallSite(&II); } -// If this cast does not affect the value passed through the varargs -// area, we can eliminate the use of the cast. +/// isSafeToEliminateVarargsCast - If this cast does not affect the value +/// passed through the varargs area, we can eliminate the use of the cast. static bool isSafeToEliminateVarargsCast(const CallSite CS, const CastInst * const CI, const TargetData * const TD, |
