From: Yaron Keren <yaron.keren@gmail.com>
Date: Wed, 18 Mar 2015 12:50:00 +0000 (+0000)
Subject: clang-format these lines to fix Visual C++ warning.
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b52cdda782d4b886f3201494377a4a5a1fe87d35;p=llvm

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.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232630 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 390cc9250b0..fa827a1aff4 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/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;
   }