llvm-6502/unittests/MC/MCAtomTest.cpp
Rafael Espindola cca08872b0 Move CFG building code to a new lib/MC/MCAnalysis library.
The new library is 150KB on a Release+Asserts build, so it is quiet a bit of
code that regular users of MC don't need to link with now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212209 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-02 19:49:34 +00:00

32 lines
918 B
C++

//===- llvm/unittest/MC/MCAtomTest.cpp - Instructions 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/MC/MCAnalysis/MCAtom.h"
#include "llvm/MC/MCAnalysis/MCModule.h"
#include "gtest/gtest.h"
namespace llvm {
namespace {
TEST(MCAtomTest, MCDataSize) {
MCModule M;
MCDataAtom *Atom = M.createDataAtom(0, 0);
EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
Atom->addData(0);
EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
Atom->addData(1);
EXPECT_EQ(uint64_t(1), Atom->getEndAddr());
Atom->addData(2);
EXPECT_EQ(uint64_t(2), Atom->getEndAddr());
EXPECT_EQ(size_t(3), Atom->getData().size());
}
} // end anonymous namespace
} // end namespace llvm