From: Mikhail Glushenkov Date: Thu, 19 Nov 2009 17:29:25 +0000 (+0000) Subject: Make example/Hello compile again. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e0ace0c08fbaab2712d6dba4fd40b591ca21dea5;p=oota-llvm.git Make example/Hello compile again. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89363 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc/example/Hello/Hello.cpp b/tools/llvmc/example/Hello/Hello.cpp index 9c96bd0a416..a7179eae8bd 100644 --- a/tools/llvmc/example/Hello/Hello.cpp +++ b/tools/llvmc/example/Hello/Hello.cpp @@ -17,6 +17,10 @@ namespace { struct MyPlugin : public llvmc::BasePlugin { + + void PreprocessOptions() const + {} + void PopulateLanguageMap(llvmc::LanguageMap&) const { outs() << "Hello!\n"; }