[llvm-commits] [llvm] r61699 - /llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp

Evan Cheng evan.cheng at apple.com
Mon Jan 5 09:17:04 PST 2009


Author: evancheng
Date: Mon Jan  5 11:17:04 2009
New Revision: 61699

URL: http://llvm.org/viewvc/llvm-project?rev=61699&view=rev
Log:
Fix misplaced right parentheses.

Modified:
    llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp

Modified: llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp?rev=61699&r1=61698&r2=61699&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/JIT/Intercept.cpp Mon Jan  5 11:17:04 2009
@@ -123,9 +123,9 @@
       // 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





More information about the llvm-commits mailing list