summary refs log tree commit diff stats
path: root/target-info-stub.c
blob: e5d2195e896cb7d87d829d45b45a8f10075bbf8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * QEMU target info stubs (target specific)
 *
 *  Copyright (c) Linaro
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "qemu/target-info.h"
#include "cpu.h"

const char *target_cpu_type(void)
{
    return CPU_RESOLVING_TYPE;
}