Rename ti -> ctx.
This should have been done in r187823 when I renamed LinkingContext
from TargetInfo. I missed a few files.
llvm-svn: 189298
diff --git a/lld/lib/ReaderWriter/CoreLinkingContext.cpp b/lld/lib/ReaderWriter/CoreLinkingContext.cpp
index 8c7b0b7..f82105e 100644
--- a/lld/lib/ReaderWriter/CoreLinkingContext.cpp
+++ b/lld/lib/ReaderWriter/CoreLinkingContext.cpp
@@ -151,7 +151,8 @@
class TestingPassFile : public MutableFile {
public:
- TestingPassFile(const LinkingContext &ti) : MutableFile(ti, "Testing pass") {}
+ TestingPassFile(const LinkingContext &ctx)
+ : MutableFile(ctx, "Testing pass") {}
virtual void addAtom(const Atom &atom) {
if (const DefinedAtom *defAtom = dyn_cast<DefinedAtom>(&atom))
@@ -207,7 +208,7 @@
class TestingStubsPass : public StubsPass {
public:
- TestingStubsPass(const LinkingContext &ti) : _file(TestingPassFile(ti)) {}
+ TestingStubsPass(const LinkingContext &ctx) : _file(TestingPassFile(ctx)) {}
virtual bool noTextRelocs() { return true; }
@@ -237,7 +238,7 @@
class TestingGOTPass : public GOTPass {
public:
- TestingGOTPass(const LinkingContext &ti) : _file(TestingPassFile(ti)) {}
+ TestingGOTPass(const LinkingContext &ctx) : _file(TestingPassFile(ctx)) {}
virtual bool noTextRelocs() { return true; }