diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-03-03 10:02:53 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-03-03 10:02:53 +0000 |
commit | b00b964697515e10a4f19c87f4bb6fdb0b41419b (patch) | |
tree | abdaab2b53a4afe1b487cdfac95a482cc59fa1c8 /llvm/tools/llvmc/example/Hello | |
parent | 9e26e6d3cb8ca24058f2c0f6ba9cb7191857c8a1 (diff) | |
download | bcm5719-llvm-b00b964697515e10a4f19c87f4bb6fdb0b41419b.tar.gz bcm5719-llvm-b00b964697515e10a4f19c87f4bb6fdb0b41419b.zip |
Move example plugins to the example/ directory.
llvm-svn: 65939
Diffstat (limited to 'llvm/tools/llvmc/example/Hello')
-rw-r--r-- | llvm/tools/llvmc/example/Hello/Hello.cpp | 30 | ||||
-rw-r--r-- | llvm/tools/llvmc/example/Hello/Makefile | 14 |
2 files changed, 44 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/example/Hello/Hello.cpp b/llvm/tools/llvmc/example/Hello/Hello.cpp new file mode 100644 index 00000000000..395ef9bbd48 --- /dev/null +++ b/llvm/tools/llvmc/example/Hello/Hello.cpp @@ -0,0 +1,30 @@ +//===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// Test plugin for LLVMC. Shows how to write plugins without using TableGen. +// +//===----------------------------------------------------------------------===// + +#include "llvm/CompilerDriver/CompilationGraph.h" +#include "llvm/CompilerDriver/Plugin.h" + +#include <iostream> + +namespace { +struct MyPlugin : public llvmc::BasePlugin { + void PopulateLanguageMap(llvmc::LanguageMap&) const + { std::cout << "Hello!\n"; } + + void PopulateCompilationGraph(llvmc::CompilationGraph&) const + {} +}; + +static llvmc::RegisterPlugin<MyPlugin> RP("Hello", "Hello World plugin"); + +} diff --git a/llvm/tools/llvmc/example/Hello/Makefile b/llvm/tools/llvmc/example/Hello/Makefile new file mode 100644 index 00000000000..10325e6a6d5 --- /dev/null +++ b/llvm/tools/llvmc/example/Hello/Makefile @@ -0,0 +1,14 @@ +##===- tools/llvmc/plugins/Hello/Makefile ------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../../.. + +LLVMC_PLUGIN = Hello + +include $(LEVEL)/Makefile.common |