aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-05-06 11:34:59 -0700
committerBen Pfaff <blp@nicira.com>2011-05-16 13:40:47 -0700
commit2932bd0512422ca9540a9a99c57c3a7f60d22df0 (patch)
treecee23a78170ace4c95bb2d8d1f6e857e3fd76393 /lib/compiler.h
parentd84d4b88d26e3f37ce24f1d3eebe0d70ef264f73 (diff)
compiler: Suppress sparse complaints about function attributes.
GCC allows __attribute__s to be included in function prototypes and then omitted later on the function definition, but sparse complains about this. Furthermore, sparse doesn't like the placement of the __attribute__s that we tend to use in OVS. I don't see any value in "fixing" these to suit sparse so it seems better to just omit them.
Diffstat (limited to 'lib/compiler.h')
-rw-r--r--lib/compiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler.h b/lib/compiler.h
index 6bf51445..9e9eb827 100644
--- a/lib/compiler.h
+++ b/lib/compiler.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009, 2010 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
#ifndef COMPILER_H
#define COMPILER_H 1
-#ifdef __GNUC__
+#if __GNUC__ && !__CHECKER__
#define NO_RETURN __attribute__((__noreturn__))
#define OVS_UNUSED __attribute__((__unused__))
#define PRINTF_FORMAT(FMT, ARG1) __attribute__((__format__(printf, FMT, ARG1)))