mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Reapply r110396, with fixes to appease the Linux buildbot gods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110460 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -25,7 +25,7 @@ namespace {
|
||||
// Hello - The first implementation, without getAnalysisUsage.
|
||||
struct Hello : public FunctionPass {
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
Hello() : FunctionPass(&ID) {}
|
||||
Hello() : FunctionPass(ID) {}
|
||||
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
++HelloCounter;
|
||||
@ -43,7 +43,7 @@ namespace {
|
||||
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
||||
struct Hello2 : public FunctionPass {
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
Hello2() : FunctionPass(&ID) {}
|
||||
Hello2() : FunctionPass(ID) {}
|
||||
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
++HelloCounter;
|
||||
|
Reference in New Issue
Block a user