aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Support/Casting.cpp
blob: 3a3af7e046d50868b79f1b315ee6311f8797c9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//===---------- llvm/unittest/Support/Casting.cpp - Casting tests --------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/Debug.h"
#define DEBUG_CAST_OPERATORS
#include "llvm/Support/Casting.h"

#include "gtest/gtest.h"
#include <cstdlib>

using namespace llvm;

namespace {

extern bar &B1;
extern const bar *B2;

TEST(CastingTest, isa) {
  // test various configurations of const
  const bar &B3 = B1;
  const bar *const B4 = B2;
  EXPECT_TRUE(isa<foo>(B1));
  EXPECT_TRUE(isa<foo>(B2));
  EXPECT_TRUE(isa<foo>(B3));
  EXPECT_TRUE(isa<foo>(B4));
}

bar B;
bar &B1 = B;
const bar *B2 = &B;
}  // anonymous namespace