Displaying 1 result from an estimated 1 matches for "mybackendtargetinfo".
2012 Jun 19
1
[LLVMdev] llvm::Triple error in new backend
Hi,
I try to write a new backend. At the moment I run into a compiler error and don't know how I can solve this problem.
Like several other targets I have a file 'mybackendTargetInfo.cpp' in the subdirectory 'TargetInfo'. The content of this file is:
#include "mybackend.h"
#include "llvm/Module.h"
#include "llvm/Support/TargetRegistry.h"
using namespace llvm;
Target llvm::TheMybackendTarget;
extern "C" void LLVMInitializeMy...