summaryrefslogtreecommitdiffstats
path: root/llvm
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
commit70b42590b0b702ed7a1957d4975fbbcd10ff3393 (patch)
tree7a9376bcfed4785a1c5e175789e9eaf7383615ba /llvm
parent6265ab8c10278033a502368526e361820da60573 (diff)
downloadbcm5719-llvm-70b42590b0b702ed7a1957d4975fbbcd10ff3393.tar.gz
bcm5719-llvm-70b42590b0b702ed7a1957d4975fbbcd10ff3393.zip
Fix misplaced right parentheses.
llvm-svn: 61699
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/Intercept.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/Intercept.cpp b/llvm/lib/ExecutionEngine/JIT/Intercept.cpp
index 1590925b044..ddc9f1303e8 100644
--- a/llvm/lib/ExecutionEngine/JIT/Intercept.cpp
+++ b/llvm/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
OpenPOWER on IntegriCloud