summary refs log tree commit diff stats
path: root/include/qemu/compiler.h
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2018-12-03 13:18:28 +0100
committerThomas Huth <thuth@redhat.com>2018-12-12 10:01:13 +0100
commit78751ea855f89b5a352ccc332162fed3ad4c9496 (patch)
tree5514d7c72ea1e0cfd2ccbd5af54843f5323a3925 /include/qemu/compiler.h
parentf773b423cc61f3ca18af5337101c158a52aaae2c (diff)
downloadfocaccia-qemu-78751ea855f89b5a352ccc332162fed3ad4c9496.tar.gz
focaccia-qemu-78751ea855f89b5a352ccc332162fed3ad4c9496.zip
Remove QEMU_ARTIFICIAL macro
The code that used it has already been removed a while ago with commit
dc41aa7d34989b552ef ("tcg: Remove GET_TCGV_* and MAKE_TCGV_*").

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/qemu/compiler.h')
-rw-r--r--include/qemu/compiler.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h
index 1593bca41d..261842beae 100644
--- a/include/qemu/compiler.h
+++ b/include/qemu/compiler.h
@@ -28,12 +28,6 @@
 
 #define QEMU_SENTINEL __attribute__((sentinel))
 
-#if QEMU_GNUC_PREREQ(4, 3)
-#define QEMU_ARTIFICIAL __attribute__((always_inline, artificial))
-#else
-#define QEMU_ARTIFICIAL
-#endif
-
 #if defined(_WIN32)
 # define QEMU_PACKED __attribute__((gcc_struct, packed))
 #else