view unittests/MC/MCAtomTest.cpp @ 56:bdef5c940791

copy the previous function's return type to return value
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 23 Jan 2014 23:14:57 +0900
parents 95c75e76d11b
children
line wrap: on
line source

//===- 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/MCAtom.h"
#include "llvm/MC/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