Remove some debug that I didn't intend to commit.

This commit is contained in:
Jeremy Rand 2015-07-17 20:16:29 -05:00
parent 8c1a0d70be
commit 6900b043ed
1 changed files with 0 additions and 4 deletions

View File

@ -7,7 +7,6 @@
//
//===----------------------------------------------------------------------===//
#include <stdio.h>
#include "WDC65816.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/TargetRegistry.h"
@ -16,9 +15,6 @@ using namespace llvm;
Target llvm::TheWDC65816Target;
extern "C" void LLVMInitializeWDC65816TargetInfo() {
printf("I got called!\n");
RegisterTarget<Triple::wdc65816, /*HasJIT=*/ false>
X(TheWDC65816Target, "wdc65816", "WDC65816");
TargetRegistry::printRegisteredTargetsForVersion();
}