Remove dead code.

llvm-svn: 227671
This commit is contained in:
Rui Ueyama 2015-01-31 04:19:55 +00:00
parent d90e64ede5
commit 14fc2cea42

View File

@ -145,18 +145,6 @@ private:
uint32_t _ordinal;
};
class TestingPassFile : public SimpleFile {
public:
TestingPassFile(const LinkingContext &ctx) : SimpleFile("Testing pass") {}
void addAtom(const Atom &atom) override {
if (const DefinedAtom *defAtom = dyn_cast<DefinedAtom>(&atom))
_definedAtoms._atoms.push_back(defAtom);
else
llvm_unreachable("atom has unknown definition kind");
}
};
} // anonymous namespace
CoreLinkingContext::CoreLinkingContext() {}