From: David Blaikie Date: Wed, 21 Jun 2017 15:20:46 +0000 (+0000) Subject: ClangFormat some changes from r305226 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=833be198cd04731293f2581bcec1211b34fe47b1;p=llvm ClangFormat some changes from r305226 Post commit review feedback from Justin Bogner git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305919 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-stress/llvm-stress.cpp b/tools/llvm-stress/llvm-stress.cpp index 0ed7adb46dd..ba1d5739586 100644 --- a/tools/llvm-stress/llvm-stress.cpp +++ b/tools/llvm-stress/llvm-stress.cpp @@ -411,12 +411,14 @@ struct ConstModifier: public Modifier { case 1: return PT->push_back(ConstantInt::get( Ty, APInt::getNullValue(Ty->getPrimitiveSizeInBits()))); - case 2: case 3: case 4: case 5: + case 2: + case 3: + case 4: + case 5: case 6: PT->push_back(ConstantInt::get(Ty, Ran->Rand())); } } - } };