summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-02 16:53:43 +0000
committerChris Lattner <sabre@nondot.org>2007-08-02 16:53:43 +0000
commit2740694450a25af2519a0ccb76854d085224b127 (patch)
treec2c599dd61be16f21197b2af29c93ce44d55ffe6 /llvm/lib/Transforms/Scalar/InstructionCombining.cpp
parenta882328e61f928e069a005218c0a967e8a10da7a (diff)
downloadbcm5719-llvm-2740694450a25af2519a0ccb76854d085224b127.tar.gz
bcm5719-llvm-2740694450a25af2519a0ccb76854d085224b127.zip
wrap some long lines. Major offenders that are left include
gvn, gvnpre, dse, and predsimplify. To see these, use: make check-line-length llvm-svn: 40738
Diffstat (limited to 'llvm/lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index bb1b31e3cea..84ae26427b7 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -7988,7 +7988,8 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) {
&Args[0], Args.size(), Caller->getName(), Caller);
cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
} else {
- NC = new CallInst(Callee, Args.begin(), Args.end(), Caller->getName(), Caller);
+ NC = new CallInst(Callee, Args.begin(), Args.end(),
+ Caller->getName(), Caller);
if (cast<CallInst>(Caller)->isTailCall())
cast<CallInst>(NC)->setTailCall();
cast<CallInst>(NC)->setCallingConv(cast<CallInst>(Caller)->getCallingConv());
OpenPOWER on IntegriCloud