1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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 a7f1d93652
commit 3a5189ac95

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");
}