ARM: cleanup formatting

clang-format a line which was poorly formatted.  NFC.

llvm-svn: 248110
This commit is contained in:
Saleem Abdulrasool 2015-09-20 03:19:09 +00:00
parent 997b357ac1
commit 4966f58ac2
1 changed files with 2 additions and 2 deletions

View File

@ -6627,8 +6627,8 @@ SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
Entry.isZExt = false;
Args.push_back(Entry);
const char *LibcallName = (ArgVT == MVT::f64)
? "__sincos_stret" : "__sincosf_stret";
const char *LibcallName =
(ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret";
SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy(DL));
TargetLowering::CallLoweringInfo CLI(DAG);