summaryrefslogtreecommitdiff
path: root/lib/Linker/LinkItems.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-04 06:44:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-04 06:44:18 +0000
commitc07cfdda023b168c085f0b5c9a78a90b22fa98eb (patch)
tree4039ac0036af6529b889e703e49e5aa201e52471 /lib/Linker/LinkItems.cpp
parent0091bf2439be9185a965f4bdeabd070ee3940348 (diff)
downloadllvm-c07cfdda023b168c085f0b5c9a78a90b22fa98eb.tar.gz
llvm-c07cfdda023b168c085f0b5c9a78a90b22fa98eb.tar.bz2
llvm-c07cfdda023b168c085f0b5c9a78a90b22fa98eb.tar.xz
For PR1302:
Use local variable names that match the function parameter name that it is passed to so the code is more clear, to wit: is_bytecode -> is_native git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker/LinkItems.cpp')
-rw-r--r--lib/Linker/LinkItems.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Linker/LinkItems.cpp b/lib/Linker/LinkItems.cpp
index ac2e9d684c..6f9f9b2205 100644
--- a/lib/Linker/LinkItems.cpp
+++ b/lib/Linker/LinkItems.cpp
@@ -32,10 +32,10 @@ Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
I != E; ++I) {
if (I->second) {
// Link in the library suggested.
- bool is_bytecode = true;
- if (LinkInLibrary(I->first, is_bytecode))
+ bool is_native = false;
+ if (LinkInLibrary(I->first, is_native))
return true;
- if (!is_bytecode)
+ if (is_native)
NativeItems.push_back(*I);
} else {
// Link in the file suggested
@@ -52,10 +52,10 @@ Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
// that module should also be aggregated with duplicates eliminated. This is
// now the time to process the dependent libraries to resolve any remaining
// symbols.
- bool is_bytecode;
+ bool is_native;
for (Module::lib_iterator I = Composite->lib_begin(),
E = Composite->lib_end(); I != E; ++I)
- if(LinkInLibrary(*I, is_bytecode))
+ if(LinkInLibrary(*I, is_native))
return true;
return false;
@@ -113,9 +113,9 @@ bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
// Process the set of libraries we've been provided.
- bool is_bytecode;
+ bool is_native = false;
for (unsigned i = 0; i < Libraries.size(); ++i)
- if (LinkInLibrary(Libraries[i], is_bytecode))
+ if (LinkInLibrary(Libraries[i], is_native))
return true;
// At this point we have processed all the libraries provided to us. Since
@@ -126,7 +126,7 @@ bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
const Module::LibraryListType& DepLibs = Composite->getLibraries();
for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
E = DepLibs.end(); I != E; ++I)
- if (LinkInLibrary(*I, is_bytecode))
+ if (LinkInLibrary(*I, is_native))
return true;
return false;