aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-15 20:00:51 +0000
committerChris Lattner <sabre@nondot.org>2006-01-15 20:00:51 +0000
commit14c02b752a7642749efa157f57536ad9c837907a (patch)
tree2774fffd7ae8791e86b0c521e4a14cca9395afe8 /lib/VMCore
parent7f9975a793c575c3e4081e2b0dc3c950681cd316 (diff)
downloadexternal_llvm-14c02b752a7642749efa157f57536ad9c837907a.zip
external_llvm-14c02b752a7642749efa157f57536ad9c837907a.tar.gz
external_llvm-14c02b752a7642749efa157f57536ad9c837907a.tar.bz2
ET-Forest has issues with unreachable blocks. Temporarily disable verifiers use
of it until they are resolved. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25341 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Verifier.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index f67a497..2219fe0 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -60,6 +60,8 @@
#include <sstream>
using namespace llvm;
+#define ETForest DominatorSet
+
namespace { // Anonymous namespace for class
struct Verifier : public FunctionPass, InstVisitor<Verifier> {