From b6f0625de2d4a733dab2b63f6c54f59c84cefee0 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 29 Feb 2012 00:20:33 +0000 Subject: Fix some stray semi-colons. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151680 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-stress/llvm-stress.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/llvm-stress/llvm-stress.cpp') diff --git a/tools/llvm-stress/llvm-stress.cpp b/tools/llvm-stress/llvm-stress.cpp index 646379bdbf..c0950591b1 100644 --- a/tools/llvm-stress/llvm-stress.cpp +++ b/tools/llvm-stress/llvm-stress.cpp @@ -1,4 +1,4 @@ -//===-- llvm-stress.cpp - Generate random LL files to stress-test LLVM -----===// +//===-- llvm-stress.cpp - Generate random LL files to stress-test LLVM ----===// // // The LLVM Compiler Infrastructure // @@ -105,7 +105,7 @@ struct Modifier { public: /// C'tor Modifier(BasicBlock *Block, PieceTable *PT, Random *R): - BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {}; + BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {} /// Add a new instruction. virtual void Act() = 0; /// Add N new instructions, @@ -256,7 +256,7 @@ protected: }; struct LoadModifier: public Modifier { - LoadModifier(BasicBlock *BB, PieceTable *PT, Random *R):Modifier(BB, PT, R) {}; + LoadModifier(BasicBlock *BB, PieceTable *PT, Random *R):Modifier(BB, PT, R) {} virtual void Act() { // Try to use predefined pointers. If non exist, use undef pointer value; Value *Ptr = getRandomPointerValue(); -- cgit v1.2.3