Skip to content
Snippets Groups Projects
Commit 6f5457d3 authored by Chris Bieneman's avatar Chris Bieneman
Browse files

We shouldn't need to pass -fno-strict-aliasing when building clang with clang.

Summary: The code comments in the Makefile indicate this was put in place to support issues when building clang with GCC. Today clang's strict aliasing works, so we shouldn't pass -fno-strict-aliasing when building with clang.

Reviewers: bogner, echristo

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D12036

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245304 91177308-0d34-0410-b5e6-96231b3b80d8
parent f27472a5
No related branches found
No related tags found
No related merge requests found
...@@ -253,7 +253,10 @@ configure_file( ...@@ -253,7 +253,10 @@ configure_file(
# Add appropriate flags for GCC # Add appropriate flags for GCC
if (LLVM_COMPILER_IS_GCC_COMPATIBLE) if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -fno-strict-aliasing") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual")
if (NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-strict-aliasing")
endif ()
# Enable -pedantic for Clang even if it's not enabled for LLVM. # Enable -pedantic for Clang even if it's not enabled for LLVM.
if (NOT LLVM_ENABLE_PEDANTIC) if (NOT LLVM_ENABLE_PEDANTIC)
......
...@@ -67,8 +67,11 @@ endif ...@@ -67,8 +67,11 @@ endif
# http://gcc.gnu.org/PR41874 # http://gcc.gnu.org/PR41874
# http://gcc.gnu.org/PR41838 # http://gcc.gnu.org/PR41838
# #
# We can revisit this when LLVM/Clang support it. # We don't need to do this if the host compiler is clang.
ifeq ($(CXX_COMPILER), "clang")
CXX.Flags += -fno-strict-aliasing CXX.Flags += -fno-strict-aliasing
endif
# Set up Clang's tblgen. # Set up Clang's tblgen.
ifndef CLANG_TBLGEN ifndef CLANG_TBLGEN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment