From 9b15234ee538b6581029ada6136fe327fe288998 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Tue, 18 Aug 2015 21:23:44 +0000 Subject: [PATCH] [autoconf] Fixing reversed logic introduced r245304. Thanks for the catch Hal! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245359 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38b6fd1ada..9497b0a421 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ endif # http://gcc.gnu.org/PR41838 # # We don't need to do this if the host compiler is clang. -ifeq ($(CXX_COMPILER), "clang") +ifneq ($(CXX_COMPILER), "clang") CXX.Flags += -fno-strict-aliasing endif -- 2.40.0