2018-03-02 13:31:11 +01:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation, or (at your option) any
|
|
|
|
* later version. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RISCV_TARGET_ELF_H
|
|
|
|
#define RISCV_TARGET_ELF_H
|
|
|
|
static inline const char *cpu_get_model(uint32_t eflags)
|
|
|
|
{
|
2019-04-20 04:23:44 +02:00
|
|
|
/* TYPE_RISCV_CPU_ANY */
|
2018-03-02 13:31:11 +01:00
|
|
|
return "any";
|
|
|
|
}
|
|
|
|
#endif
|