From 20055e22c5522cdc040e7b40086e56a570aebc89 Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Wed, 16 Jul 2014 22:07:30 +0200 Subject: [PATCH] Clean Makefile indentation. --- Makefile | 10 +++++----- rotation.cpp | 1 - 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 523d247..6b1eb5d 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -CXX = clang++ -CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror -DEFINES = -DSIMD -BUILD_DIR=/tmp -IMG=img/lena.ppm +CXX = clang++ +CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror +DEFINES = -DSIMD +BUILD_DIR = /tmp +IMG = img/lena.ppm all: rotation.cpp $(CXX) $(CXXFLAGS) $(DEFINES) $< -o $(BUILD_DIR)/rotation diff --git a/rotation.cpp b/rotation.cpp index 6682605..1acccde 100644 --- a/rotation.cpp +++ b/rotation.cpp @@ -766,7 +766,6 @@ void rotate_pixel(TiledImage const& src, rot_tile[1] = _mm_extract_epi16(top, 1) + _mm_extract_epi16(top, 5); rot_tile[2] = _mm_extract_epi16(top, 2) + _mm_extract_epi16(top, 6); - #endif // ! SIMD }