From fb9519838a45547c9acc2434afc9139438e7c700 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Sat, 12 Jul 2014 00:06:46 +0000 Subject: [PATCH] Avoid a warning from MSVC on "*/" in this code by inserting a space llvm-svn: 212862 --- llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index c0b3a02..45c775d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/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; } -- 2.7.4