aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-cross-product.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-15 01:04:14 +0200
committerMattias Andrée <maandree@kth.se>2017-07-15 01:04:14 +0200
commitf3cde9060c57320c9ed7a9b4bcb494bd411fb1f4 (patch)
tree41a1a50970c7875038e25b6a0a632e23b1ce6001 /src/blind-cross-product.c
parentFix blind-{cross,dot,quaternion}-product and blind-vector-projection (diff)
downloadblind-f3cde9060c57320c9ed7a9b4bcb494bd411fb1f4.tar.gz
blind-f3cde9060c57320c9ed7a9b4bcb494bd411fb1f4.tar.bz2
blind-f3cde9060c57320c9ed7a9b4bcb494bd411fb1f4.tar.xz
Fix warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-cross-product.c')
-rw-r--r--src/blind-cross-product.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/blind-cross-product.c b/src/blind-cross-product.c
index b520719..ca5fcdf 100644
--- a/src/blind-cross-product.c
+++ b/src/blind-cross-product.c
@@ -3,11 +3,6 @@
USAGE("right-hand-stream")
-#if defined(__GNUC__) && !defined(__clang__)
-# pragma GCC diagnostic push
-# pragma GCC diagnostic ignored "-Wunsafe-loop-optimizations"
-#endif
-
#define PROCESS(TYPE, SUFFIX)\
static void\
process_##SUFFIX(struct stream *left, struct stream *right, size_t n)\
@@ -33,10 +28,6 @@ USAGE("right-hand-stream")
PROCESS(double, lf)
PROCESS(float, f)
-#if defined(__GNUC__) && !defined(__clang__)
-# pragma GCC diagnostic pop
-#endif
-
int
main(int argc, char *argv[])
{