13 lines
516 B
Diff
13 lines
516 B
Diff
diff --git a/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt b/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
|
|
index eb924282a75e..85929b54d6ce 100644
|
|
--- a/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
|
|
+++ b/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
|
|
@@ -44,3 +44,8 @@ add_llvm_component_library(LLVMAsmPrinter
|
|
Support
|
|
Target
|
|
)
|
|
+
|
|
+# https://bugs.llvm.org/show_bug.cgi?id=50611#c3
|
|
+if (CMAKE_COMPILER_IS_GNUCXX)
|
|
+ set_source_files_properties(DwarfCompileUnit.cpp PROPERTIES COMPILE_FLAGS -fno-strict-aliasing)
|
|
+endif()
|