diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-02-15 22:09:09 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-02-15 22:09:09 +0000 |
commit | 6a7cb63f6fe4b9ce707e88490e2eeb76cb40ed80 (patch) | |
tree | 00177f3ee697ea23e4c4f4958a8a5e7fcd565e1b /unittests/VMCore | |
parent | 8eea48a43da9e861841abe869c5f3215c1f42d27 (diff) |
Teach the verifier to check the condition on a branch and ensure that it has
'i1' type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/VMCore')
-rw-r--r-- | unittests/VMCore/VerifierTest.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/unittests/VMCore/VerifierTest.cpp b/unittests/VMCore/VerifierTest.cpp new file mode 100644 index 0000000000..c8838c5276 --- /dev/null +++ b/unittests/VMCore/VerifierTest.cpp @@ -0,0 +1,44 @@ +//===- llvm/unittest/VMCore/VerifierTest.cpp - Verifier unit tests --------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Constants.h" +#include "llvm/DerivedTypes.h" +#include "llvm/Function.h" +#include "llvm/Instructions.h" +#include "llvm/LLVMContext.h" +#include "llvm/Analysis/Verifier.h" +#include "gtest/gtest.h" + +namespace llvm { +namespace { + +TEST(VerifierTest, Branch_i1) { + LLVMContext &C = getGlobalContext(); + FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false); + Function *F = Function::Create(FTy, GlobalValue::ExternalLinkage); + BasicBlock *Entry = BasicBlock::Create(C, "entry", F); + BasicBlock *Exit = BasicBlock::Create(C, "exit", F); + ReturnInst::Create(C, Exit); + + // To avoid triggering an assertion in BranchInst::Create, we first create + // a branch with an 'i1' condition ... + + Constant *False = ConstantInt::getFalse(C); + BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry); + + // ... then use setOperand to redirect it to a value of different type. + + Constant *Zero32 = ConstantInt::get(IntegerType::get(C, 32), 0); + BI->setOperand(0, Zero32); + + EXPECT_TRUE(verifyFunction(*F, ReturnStatusAction)); +} + +} +} |