diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-01-19 22:56:26 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-01-19 22:56:26 +0000 |
commit | cb9a6aab02f07cda005c7c078d8e4a3463017866 (patch) | |
tree | 21c2d97c0afef097876e05946b30b538d8a8a81d /lib | |
parent | 2b98bd23cb0bfa0dc09e1bcaef83a0e606e6ec1a (diff) | |
download | external_llvm-cb9a6aab02f07cda005c7c078d8e4a3463017866.zip external_llvm-cb9a6aab02f07cda005c7c078d8e4a3463017866.tar.gz external_llvm-cb9a6aab02f07cda005c7c078d8e4a3463017866.tar.bz2 |
Wrap some comments to 80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93940 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 7354529..76c6a27 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -387,7 +387,8 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) - // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR iff target supports vfp2. + // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR + // iff target supports vfp2. setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom); // We want to custom lower some of our intrinsics. @@ -3531,7 +3532,8 @@ static SDValue PerformSUBCombine(SDNode *N, return SDValue(); } -/// PerformVMOVRRDCombine - Target-specific dag combine xforms for ARMISD::VMOVRRD. +/// PerformVMOVRRDCombine - Target-specific dag combine xforms for +/// ARMISD::VMOVRRD. static SDValue PerformVMOVRRDCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) { // fmrrd(fmdrr x, y) -> x,y |