summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2016-09-29 22:37:45 +0000
committerRui Ueyama <ruiu@google.com>2016-09-29 22:37:45 +0000
commit1cc007aeae3a84e18a2609200eb2d827aa811011 (patch)
tree38854c87d55eaf5c71a44bf5fbbf16a77d53f377
parent475f2ccf98d53a2146530bef403bdfb8e97085cf (diff)
downloadbcm5719-llvm-1cc007aeae3a84e18a2609200eb2d827aa811011.tar.gz
bcm5719-llvm-1cc007aeae3a84e18a2609200eb2d827aa811011.zip
Keep a private member private.
llvm-svn: 282798
-rw-r--r--lld/ELF/LTO.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/LTO.h b/lld/ELF/LTO.h
index e43cfcce373..7a91957fec5 100644
--- a/lld/ELF/LTO.h
+++ b/lld/ELF/LTO.h
@@ -42,12 +42,12 @@ class BitcodeCompiler {
public:
BitcodeCompiler();
~BitcodeCompiler();
+
void add(BitcodeFile &F);
std::vector<InputFile *> compile();
- std::unique_ptr<llvm::lto::LTO> LtoObj;
-
private:
+ std::unique_ptr<llvm::lto::LTO> LtoObj;
std::vector<SmallString<0>> Buff;
};
}
OpenPOWER on IntegriCloud