[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
This commit is contained in:
Chris Bieneman 2015-08-18 21:23:44 +00:00
parent 49a16fa1a9
commit 9b15234ee5
1 changed files with 1 additions and 1 deletions

View File

@ -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