]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
Remove QEMU_ARTIFICIAL macro
authorThomas Huth <thuth@redhat.com>
Mon, 3 Dec 2018 12:18:28 +0000 (13:18 +0100)
committerThomas Huth <thuth@redhat.com>
Wed, 12 Dec 2018 09:01:13 +0000 (10:01 +0100)
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>
include/qemu/compiler.h
scripts/checkpatch.pl
scripts/cocci-macro-file.h

index 1593bca41de04cbd9d43df24a9e5b64743301c1f..261842beae2630b7b6d1ca94aa3681320b85d574 100644 (file)
 
 #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
index 60f6f89a27f12c6d65c9bc1b8f0fc5bd9b87bdd7..a892a6cc7c3fdcce3e8b5eaf5a9800b5da6cf08f 100755 (executable)
@@ -202,7 +202,6 @@ our $Attribute      = qr{
                        QEMU_NORETURN|
                        QEMU_WARN_UNUSED_RESULT|
                        QEMU_SENTINEL|
-                       QEMU_ARTIFICIAL|
                        QEMU_PACKED|
                        GCC_FMT_ATTR
                  }x;
index 9f2e72e7e15ac7c776c804d8262a71fd0138a2e6..7e200a1023d5e4c533853e4278ccd505c6154485 100644 (file)
@@ -23,7 +23,6 @@
 #define QEMU_NORETURN __attribute__ ((__noreturn__))
 #define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
 #define QEMU_SENTINEL __attribute__((sentinel))
-#define QEMU_ARTIFICIAL __attribute__((always_inline, artificial))
 #define QEMU_PACKED __attribute__((gcc_struct, packed))
 
 #define cat(x,y) x ## y