Remove the rest of the unordered_ stuff.

Change-Id: Ibfef4e807c1d2ce63887b6c67d1c1e60012d46a5
diff --git a/src/compiler.cc b/src/compiler.cc
index d700adb..51a5caa 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -28,13 +28,13 @@
   ByteArray* CreateAbstractMethodErrorStub();
   CompiledInvokeStub* ArmCreateInvokeStub(bool is_static, const char* shorty);
   ByteArray* ArmCreateResolutionTrampoline(Runtime::TrampolineType type);
-  ByteArray* CreateJniDlysmLookupStub();
+  ByteArray* CreateJniDlsymLookupStub();
 }
 namespace x86 {
   ByteArray* CreateAbstractMethodErrorStub();
   CompiledInvokeStub* X86CreateInvokeStub(bool is_static, const char* shorty);
   ByteArray* X86CreateResolutionTrampoline(Runtime::TrampolineType type);
-  ByteArray* CreateJniDlysmLookupStub();
+  ByteArray* CreateJniDlsymLookupStub();
 }
 
 Compiler::Compiler(InstructionSet instruction_set,
@@ -67,13 +67,13 @@
   }
 }
 
-ByteArray* Compiler::CreateJniDlysmLookupStub(InstructionSet instruction_set) {
+ByteArray* Compiler::CreateJniDlsymLookupStub(InstructionSet instruction_set) {
   switch (instruction_set) {
     case kArm:
     case kThumb2:
-      return arm::CreateJniDlysmLookupStub();
+      return arm::CreateJniDlsymLookupStub();
     case kX86:
-      return x86::CreateJniDlysmLookupStub();
+      return x86::CreateJniDlsymLookupStub();
     default:
       LOG(FATAL) << "Unknown InstructionSet " << (int) instruction_set;
       return NULL;