am aad0d97e: Call out the functions that we actually import.

* commit 'aad0d97e772d80467c248007fa096b191884d823':
  Call out the functions that we actually import.
diff --git a/src/compiler_llvm/compilation_unit.cc b/src/compiler_llvm/compilation_unit.cc
index 92acb2c..ae64500 100644
--- a/src/compiler_llvm/compilation_unit.cc
+++ b/src/compiler_llvm/compilation_unit.cc
@@ -141,7 +141,8 @@
 
     irb_->SetInsertPoint(bb->getTerminator());
 
-    using namespace art::compiler_llvm::runtime_support;
+    using art::compiler_llvm::runtime_support::TestSuspend;
+    using art::compiler_llvm::runtime_support::GetCurrentThread;
     llvm::Value* runtime_func = irb_->GetRuntime(TestSuspend);
     llvm::Value* thread_object_addr = irb_->CreateCall(irb_->GetRuntime(GetCurrentThread));
     irb_->CreateCall(runtime_func, thread_object_addr);