blob: 3823afc4429ea9bc6f50873171719881bfb15eba [file] [log] [blame]
Gabor Greif15580382010-03-16 09:55:46 +00001//===- llvm/unittest/VMCore/InstructionsTest.cpp - Instructions unit tests ===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Instructions.h"
11#include "llvm/LLVMContext.h"
12#include "gtest/gtest.h"
13
14namespace llvm {
15namespace {
16
17TEST(InstructionsTest, ReturnInst_0) {
18 LLVMContext &C(getGlobalContext());
19
20 // reproduction recipe for PR6589
21 const ReturnInst* r0 = ReturnInst::Create(C);
22 EXPECT_NE(r0->op_begin(), r0->op_end());
23}
24
25} // end anonymous namespace
26} // end namespace llvm