From 794ffb7da384367b4d334cacaf7a03b203a52692 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Wed, 18 Mar 2015 12:50:00 +0000 Subject: [PATCH] clang-format these lines to fix Visual C++ warning. Visual C++ 2013 complains "warning C4138: '*/' found outside of comment" about the code CallInst */*CI*/ but compiles OK. clang-formatting these lines adds an extra space and makes Visual C++ satisfied. llvm-svn: 232630 --- llvm/include/llvm/Target/TargetLowering.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index 390cc92..fa827a1 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/include/llvm/Target/TargetLowering.h @@ -980,8 +980,8 @@ public: /// the object whose address is being passed. If so then MinSize is set to the /// minimum size the object must be to be aligned and PrefAlign is set to the /// preferred alignment. - virtual bool shouldAlignPointerArgs(CallInst */*CI*/, unsigned &/*MinSize*/, - unsigned &/*PrefAlign*/) const { + virtual bool shouldAlignPointerArgs(CallInst * /*CI*/, unsigned & /*MinSize*/, + unsigned & /*PrefAlign*/) const { return false; } -- 2.7.4