aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCAtom.h
diff options
context:
space:
mode:
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