diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-11-25 21:38:12 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-11-25 21:38:12 +0000 |
commit | 113ec35f7f69bd66c0fbab7b42e2b9d59eddb946 (patch) | |
tree | 3b134d1c1e4f3a77e35efe15051cb40295f4e801 /tools/llvmc2/plugins/Hello/Hello.cpp | |
parent | d91487785f641af7f5c6c32b04cb28cfe94518a9 (diff) |
Since the old llvmc was removed, rename llvmc2 to llvmc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc2/plugins/Hello/Hello.cpp')
-rw-r--r-- | tools/llvmc2/plugins/Hello/Hello.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/llvmc2/plugins/Hello/Hello.cpp b/tools/llvmc2/plugins/Hello/Hello.cpp deleted file mode 100644 index eb52d249f0..0000000000 --- a/tools/llvmc2/plugins/Hello/Hello.cpp +++ /dev/null @@ -1,32 +0,0 @@ -//===- 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. -// -//===----------------------------------------------------------------------===// - -#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"); - -} - - |