summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Object/IRObjectFile.cpp
diff options
context:
space:
mode:
authorMehdi Amini <mehdi.amini@apple.com>2016-04-22 04:49:46 +0000
committerMehdi Amini <mehdi.amini@apple.com>2016-04-22 04:49:46 +0000
commit9ff43e40fafe9cad0bd5d3e388e2a3e5c4d448a3 (patch)
tree084a8ce380239eac1a125a5b12a41501a2bc0b93 /llvm/lib/Object/IRObjectFile.cpp
parent9a1724bf3dc126f4e4d4b9e4c617f9b06b756c7d (diff)
downloadbcm5719-llvm-9ff43e40fafe9cad0bd5d3e388e2a3e5c4d448a3.tar.gz
bcm5719-llvm-9ff43e40fafe9cad0bd5d3e388e2a3e5c4d448a3.zip
IRObjectFile, clang-format fixup for r267104
From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 267105
Diffstat (limited to 'llvm/lib/Object/IRObjectFile.cpp')
-rw-r--r--llvm/lib/Object/IRObjectFile.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/Object/IRObjectFile.cpp b/llvm/lib/Object/IRObjectFile.cpp
index efa30b036bd..0d35744f93d 100644
--- a/llvm/lib/Object/IRObjectFile.cpp
+++ b/llvm/lib/Object/IRObjectFile.cpp
@@ -38,10 +38,11 @@ using namespace object;
IRObjectFile::IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> Mod)
: SymbolicFile(Binary::ID_IR, Object), M(std::move(Mod)) {
Mang.reset(new Mangler());
- CollectAsmUndefinedRefs(*M, [this](StringRef Name,
- BasicSymbolRef::Flags Flags) {
- AsmSymbols.push_back(std::make_pair<std::string, uint32_t>(Name, std::move(Flags)));
- });
+ CollectAsmUndefinedRefs(
+ *M, [this](StringRef Name, BasicSymbolRef::Flags Flags) {
+ AsmSymbols.push_back(
+ std::make_pair<std::string, uint32_t>(Name, std::move(Flags)));
+ });
}
// Parse inline ASM and collect the list of symbols that are not defined in
OpenPOWER on IntegriCloud