summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCAtom.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-24 17:00:42 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-24 17:00:42 +0000
commit71d259bc4be4f5c7a8a30c6be8da105074ff805a (patch)
treeb0ae8bb92b558364d2f86fe249cf3b12dfc19ada /include/llvm/MC/MCAtom.h
parentd814b2150950114a44b607c90ea7a0725c40a8e6 (diff)
downloadllvm-71d259bc4be4f5c7a8a30c6be8da105074ff805a.tar.gz
llvm-71d259bc4be4f5c7a8a30c6be8da105074ff805a.tar.bz2
llvm-71d259bc4be4f5c7a8a30c6be8da105074ff805a.tar.xz
We decided to not worry about Atoms for now, it should be straightforward to
reintroduce them later. Also, don't require MCSection* when creating a symbol. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAtom.h')
-rw-r--r--include/llvm/MC/MCAtom.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/llvm/MC/MCAtom.h b/include/llvm/MC/MCAtom.h
deleted file mode 100644
index f91a96f7c2..0000000000
--- a/include/llvm/MC/MCAtom.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//===- MCAtom.h - Machine Code Atoms ----------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_MC_MCATOM_H
-#define LLVM_MC_MCATOM_H
-
-namespace llvm {
-
- class MCAtom {
- MCSection *Section;
-
- public:
- MCAtom(MCSection *_Section) : Section(_Section) {}
-
- MCSection *getSection() { return Section; }
- };
-
-} // end namespace llvm
-
-#endif