X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FDebugger%2FSourceLanguage-Unknown.cpp;h=b806fc779ef7e9065e4cce711e7aa4e6db8fd94a;hb=0a0e68a7eac0513505aff3079e2d5d6864e51895;hp=22376f8e2d2d8dc6d4c8070601a708559559061f;hpb=edf128a7fa90f2b0b7ee24741a04a7ae1ecd6f7e;p=oota-llvm.git diff --git a/lib/Debugger/SourceLanguage-Unknown.cpp b/lib/Debugger/SourceLanguage-Unknown.cpp index 22376f8e2d2..b806fc779ef 100644 --- a/lib/Debugger/SourceLanguage-Unknown.cpp +++ b/lib/Debugger/SourceLanguage-Unknown.cpp @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -15,8 +15,9 @@ #include "llvm/Debugger/SourceLanguage.h" #include "llvm/Debugger/ProgramInfo.h" -#include +#include "llvm/Support/Streams.h" #include +#include using namespace llvm; //===----------------------------------------------------------------------===// @@ -58,7 +59,7 @@ SLUCache::SLUCache(ProgramInfo &pi) : PI(pi) { // namespace { - struct SLU : public SourceLanguage { + static struct SLU : public SourceLanguage { //===------------------------------------------------------------------===// // Implement the miscellaneous methods... // @@ -131,7 +132,7 @@ SourceFunctionInfo *SLU::lookupFunction(const std::string &FunctionName, SourceFunctionInfo *Found = IP.first->second; ++IP.first; if (IP.first != IP.second) - std::cout << "Whoa, found multiple functions with the same name. I should" - << " ask the user which one to use: FIXME!\n"; + cout << "Whoa, found multiple functions with the same name. I should" + << " ask the user which one to use: FIXME!\n"; return Found; }