Add backend name to AVR Target to enable runtime info to be fed back into TableGen

llvm-svn: 318895
This commit is contained in:
Leslie Zhai 2017-11-23 04:11:11 +00:00
parent a7864ed64a
commit c5b8e8b97f
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ Target &getTheAVRTarget() {
extern "C" void LLVMInitializeAVRTargetInfo() {
llvm::RegisterTarget<llvm::Triple::avr> X(llvm::getTheAVRTarget(), "avr",
"Atmel AVR Microcontroller");
"Atmel AVR Microcontroller", "AVR");
}