summaryrefslogtreecommitdiffstats
path: root/lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2013-08-27 00:04:42 +0000
committerRui Ueyama <ruiu@google.com>2013-08-27 00:04:42 +0000
commit352e7308c0e3695d418c53e03fafb2a60af5e5d2 (patch)
tree90f570035c7514d22277db27c94715532eb2bd6d /lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h
parenta44362e4e95411b129b0d41133f2c6b2bf1093d8 (diff)
downloadbcm5719-llvm-352e7308c0e3695d418c53e03fafb2a60af5e5d2.tar.gz
bcm5719-llvm-352e7308c0e3695d418c53e03fafb2a60af5e5d2.zip
Rename ti -> ctx.
This should have been done in r187823 when I renamed LinkingContext from TargetInfo. I missed a few files. llvm-svn: 189298
Diffstat (limited to 'lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h')
-rw-r--r--lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h b/lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h
index e3226c05412..54d86036fd2 100644
--- a/lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h
+++ b/lld/lib/ReaderWriter/PECOFF/LinkerGeneratedSymbolFile.h
@@ -117,9 +117,9 @@ private:
/// symbols.
class UndefinedSymbolFile : public SimpleFile {
public:
- UndefinedSymbolFile(const LinkingContext &ti)
- : SimpleFile(ti, "Linker Internal File") {
- for (StringRef symbol : ti.initialUndefinedSymbols()) {
+ UndefinedSymbolFile(const LinkingContext &ctx)
+ : SimpleFile(ctx, "Linker Internal File") {
+ for (StringRef symbol : ctx.initialUndefinedSymbols()) {
UndefinedAtom *atom = new (_alloc) coff::COFFUndefinedAtom(*this, symbol);
addAtom(*atom);
}
OpenPOWER on IntegriCloud