From 9eed9a956f9ff0939bdf392de7be59ce168a8b17 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Tue, 26 Jan 2016 18:14:37 +0000 Subject: [PATCH] fix formatting; NFC llvm-svn: 258825 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index b8afce0e7478..abe6282bdefc 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1103,8 +1103,7 @@ SDValue SelectionDAG::getConstant(uint64_t Val, SDLoc DL, EVT VT, bool isT, } SDValue SelectionDAG::getConstant(const APInt &Val, SDLoc DL, EVT VT, bool isT, - bool isO) -{ + bool isO) { return getConstant(*ConstantInt::get(*Context, Val), DL, VT, isT, isO); }