aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-08 06:59:50 +0000
committerChris Lattner <sabre@nondot.org>2005-01-08 06:59:50 +0000
commit8c92628d1c9db4827f364614bde1660fe800af30 (patch)
tree52d7f06dd20e86baef372cdea1df58b442e2fa1b
parent5d2c6c784bdc3d572a553ed7aa48dcf27a45b1a3 (diff)
downloadexternal_llvm-8c92628d1c9db4827f364614bde1660fe800af30.zip
external_llvm-8c92628d1c9db4827f364614bde1660fe800af30.tar.gz
external_llvm-8c92628d1c9db4827f364614bde1660fe800af30.tar.bz2
Wrap long line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19367 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86ISelSimple.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelSimple.cpp b/lib/Target/X86/X86ISelSimple.cpp
index 9de2ef2..bf47cb6 100644
--- a/lib/Target/X86/X86ISelSimple.cpp
+++ b/lib/Target/X86/X86ISelSimple.cpp
@@ -1632,8 +1632,8 @@ void X86ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
case cFP:
if (ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(Args[i].Val)) {
- // Store constant FP values with integer instructions to avoid having to
- // load the constants from the constant pool then do a store.
+ // Store constant FP values with integer instructions to avoid having
+ // to load the constants from the constant pool then do a store.
if (CFP->getType() == Type::FloatTy) {
union {
unsigned I;