[clang] e0b3a8c - [CodeGenCXX][test] Use -fno-experimental-new-pass-manager for CodeGenCXX/union-tbaa2.cpp after D68593/llvmorg-10-init-8907-gcecc0d27ad5

Fangrui Song via cfe-commits cfe-commits at lists.llvm.org
Sat Nov 2 15:59:02 PDT 2019


Author: Fangrui Song
Date: 2019-11-02T15:58:54-07:00
New Revision: e0b3a8c991569f8c05a4edb551b8cc2942e37ea1

URL: https://github.com/llvm/llvm-project/commit/e0b3a8c991569f8c05a4edb551b8cc2942e37ea1
DIFF: https://github.com/llvm/llvm-project/commit/e0b3a8c991569f8c05a4edb551b8cc2942e37ea1.diff

LOG: [CodeGenCXX][test] Use -fno-experimental-new-pass-manager for CodeGenCXX/union-tbaa2.cpp after D68593/llvmorg-10-init-8907-gcecc0d27ad5

It fails with -DENABLE_EXPERIMENTAL_NEW_PASS_MANAGER=0 builds. Temporarily use -fno-experimental-new-pass-manager while we are investigating the root cause.

Added: 
    

Modified: 
    clang/test/CodeGenCXX/union-tbaa2.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenCXX/union-tbaa2.cpp b/clang/test/CodeGenCXX/union-tbaa2.cpp
index d3e37408c4a7..5d13ff1ad8d9 100644
--- a/clang/test/CodeGenCXX/union-tbaa2.cpp
+++ b/clang/test/CodeGenCXX/union-tbaa2.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 %s -O2 -std=c++11 -triple x86_64-unknown-linux-gnu -target-cpu x86-64 -target-feature +sse4.2 -target-feature +avx -emit-llvm -o - | FileCheck %s
+// RUN: %clang_cc1 %s -O2 -fno-experimental-new-pass-manager -std=c++11 -triple x86_64-unknown-linux-gnu -target-cpu x86-64 -target-feature +sse4.2 -target-feature +avx -emit-llvm -o - | FileCheck %s
 
 // Testcase from llvm.org/PR32056
 


        


More information about the cfe-commits mailing list