From 11b910c71f9822c7a55b310c3b590b0c447c5715 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 11 Jan 2007 07:58:19 +0000 Subject: [PATCH] Shut up a warning about signed/unsigned. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33071 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/AsmWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 181f8e68c61..a00b19edc96 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1495,7 +1495,7 @@ int SlotMachine::getGlobalSlot(const GlobalValue *V) { // Lookup the value in the module plane's map. ValueMap::const_iterator MVI = MI->second.map.find(V); - return MVI != MI->second.map.end() ? MVI->second : -1; + return MVI != MI->second.map.end() ? int(MVI->second) : -1; }