summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-01-05 17:17:04 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-01-05 17:17:04 +0000
commit5951368409eef4e72ce9292fcc1f25807710f8e5 (patch)
tree95d4ae2a49935e91f37bbaf0b988148138e83afc /lib
parent84fb959489a07f032208deb8bf32776867aaeab2 (diff)
downloadllvm-5951368409eef4e72ce9292fcc1f25807710f8e5.tar.gz
llvm-5951368409eef4e72ce9292fcc1f25807710f8e5.tar.bz2
llvm-5951368409eef4e72ce9292fcc1f25807710f8e5.tar.xz
Fix misplaced right parentheses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ExecutionEngine/JIT/Intercept.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/Intercept.cpp b/lib/ExecutionEngine/JIT/Intercept.cpp
index 1590925b04..ddc9f1303e 100644
--- a/lib/ExecutionEngine/JIT/Intercept.cpp
+++ b/lib/ExecutionEngine/JIT/Intercept.cpp
@@ -123,9 +123,9 @@ void *JIT::getPointerToNamedFunction(const std::string &Name,
// First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
// This mirrors logic in libSystemStubs.a.
std::string Prefix = std::string(Name.begin(), Name.end()-9);
- if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128"), false)
+ if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
return Ptr;
- if (void *Ptr = getPointerToNamedFunction(Prefix), false)
+ if (void *Ptr = getPointerToNamedFunction(Prefix, false))
return Ptr;
}
#endif