From: Reid Kleckner Date: Sat, 12 Jul 2014 00:06:46 +0000 (+0000) Subject: Avoid a warning from MSVC on "*/" in this code by inserting a space X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b233e0ea1e7da74f27880df1911112a165b89ed1;p=oota-llvm.git Avoid a warning from MSVC on "*/" in this code by inserting a space git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212862 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index c0b3a02d54d..45c775dca29 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -1604,7 +1604,7 @@ bool FastISel::FastLowerCall(CallLoweringInfo &/*CLI*/) { return false; } -bool FastISel::FastLowerIntrinsicCall(const IntrinsicInst */*II*/) { +bool FastISel::FastLowerIntrinsicCall(const IntrinsicInst * /*II*/) { return false; }