diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-01-26 18:14:37 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-26 18:14:37 +0000 |
commit | 9eed9a956f9ff0939bdf392de7be59ce168a8b17 (patch) | |
tree | ad8cd7e07cfbb2f29fb13ffc63062871479e3595 /llvm/lib/CodeGen | |
parent | a7a8b1f2c07aa87cbc37a5ded062b44250ef46dd (diff) | |
download | bcm5719-llvm-9eed9a956f9ff0939bdf392de7be59ce168a8b17.tar.gz bcm5719-llvm-9eed9a956f9ff0939bdf392de7be59ce168a8b17.zip |
fix formatting; NFC
llvm-svn: 258825
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index b8afce0e747..abe6282bdef 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); } |