Update for MCImm -> MCValue rename.
[oota-llvm.git] / include / llvm / MC / MCAtom.h
1 //===- MCAtom.h - Machine Code Atoms ----------------------------*- C++ -*-===//
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 #ifndef LLVM_MC_MCATOM_H
11 #define LLVM_MC_MCATOM_H
12
13 namespace llvm {
14
15   class MCAtom {
16     MCSection *Section;
17
18   public:
19     MCAtom(MCSection *_Section) : Section(_Section) {}
20   };
21
22 } // end namespace llvm
23
24 #endif