From: Leslie Zhai Date: Thu, 23 Nov 2017 04:11:11 +0000 (+0000) Subject: Add backend name to AVR Target to enable runtime info to be fed back into TableGen X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d2231861c32f56c7d5cb6c27949eef22ee5f439;p=llvm Add backend name to AVR Target to enable runtime info to be fed back into TableGen git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@318895 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp b/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp index 36cecaa7ac7..abe9cf45fcb 100644 --- a/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp +++ b/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp @@ -18,6 +18,6 @@ Target &getTheAVRTarget() { extern "C" void LLVMInitializeAVRTargetInfo() { llvm::RegisterTarget X(llvm::getTheAVRTarget(), "avr", - "Atmel AVR Microcontroller"); + "Atmel AVR Microcontroller", "AVR"); }