From 8dd3f4026ea3dd4ac7f6ea2ff1e51ebedbee39d0 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 21 Jun 2017 15:20:46 +0000 Subject: [PATCH] ClangFormat some changes from r305226 Post commit review feedback from Justin Bogner llvm-svn: 305919 --- tools/llvm-stress/llvm-stress.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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())); } } - } };