Adding -verify-machineinstrs option to PowerPC tests

Currently we have a number of tests that fail with -verify-machineinstrs.
To detect this cases earlier we add the option to the testcases with the
exception of tests that will currently fail with this option. PR 27456 keeps
track of this failures.

No code review, as discussed with Hal Finkel.

llvm-svn: 277624
diff --git a/llvm/test/CodeGen/PowerPC/bitreverse.ll b/llvm/test/CodeGen/PowerPC/bitreverse.ll
index 1c3741a..dca7340 100644
--- a/llvm/test/CodeGen/PowerPC/bitreverse.ll
+++ b/llvm/test/CodeGen/PowerPC/bitreverse.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=ppc64 %s -o - | FileCheck %s
+; RUN: llc -verify-machineinstrs -march=ppc64 %s -o - | FileCheck %s
 
 ; These tests just check that the plumbing is in place for @llvm.bitreverse. The
 ; actual output is massive at the moment as llvm.bitreverse is not yet legal.