[compiler-rt] r277798 - Reverting r277632 as it breaks the build on MacOS.

Ivan Krasin via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 4 20:18:27 PDT 2016


Author: krasin
Date: Thu Aug  4 22:18:27 2016
New Revision: 277798

URL: http://llvm.org/viewvc/llvm-project?rev=277798&view=rev
Log:
Reverting r277632 as it breaks the build on MacOS.

Reviewers: kcc

Differential Revision: https://reviews.llvm.org/D23190

Modified:
    compiler-rt/trunk/test/cfi/multiple-inheritance.cpp
    compiler-rt/trunk/test/cfi/simple-pass.cpp

Modified: compiler-rt/trunk/test/cfi/multiple-inheritance.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/cfi/multiple-inheritance.cpp?rev=277798&r1=277797&r2=277798&view=diff
==============================================================================
--- compiler-rt/trunk/test/cfi/multiple-inheritance.cpp (original)
+++ compiler-rt/trunk/test/cfi/multiple-inheritance.cpp Thu Aug  4 22:18:27 2016
@@ -22,18 +22,6 @@
 // RUN: %t6 2>&1 | FileCheck --check-prefix=CFI-DIAG2 %s
 // RUN: %t6 x 2>&1 | FileCheck --check-prefix=CFI-DIAG1 %s
 
-// RUN: %clangxx_cfi_diag -Wl,-plugin-opt,--lowertypetests-bitsets-level=0 -o %t7 %s
-// RUN: %t7 2>&1 | FileCheck --check-prefix=NCFI %s
-// RUN: %t7 x 2>&1 | FileCheck --check-prefix=CFI-DIAG1 %s
-
-// RUN: %clangxx_cfi_diag -Wl,-plugin-opt,--lowertypetests-bitsets-level=1 -o %t8 %s
-// RUN: %t8 2>&1 | FileCheck --check-prefix=CFI-DIAG2 %s
-// RUN: %t8 x 2>&1 | FileCheck --check-prefix=CFI-DIAG1 %s
-
-// RUN: %clangxx_cfi_diag -Wl,-plugin-opt,--lowertypetests-bitsets-level=2 -o %t9 %s
-// RUN: %t9 2>&1 | FileCheck --check-prefix=CFI-DIAG2 %s
-// RUN: %t9 x 2>&1 | FileCheck --check-prefix=CFI-DIAG1 %s
-
 // Tests that the CFI mechanism is sensitive to multiple inheritance and only
 // permits calls via virtual tables for the correct base class.
 

Modified: compiler-rt/trunk/test/cfi/simple-pass.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/cfi/simple-pass.cpp?rev=277798&r1=277797&r2=277798&view=diff
==============================================================================
--- compiler-rt/trunk/test/cfi/simple-pass.cpp (original)
+++ compiler-rt/trunk/test/cfi/simple-pass.cpp Thu Aug  4 22:18:27 2016
@@ -1,11 +1,5 @@
 // RUN: %clangxx_cfi -o %t %s
 // RUN: %t
-// RUN: %clangxx_cfi -Wl,-plugin-opt,--lowertypetests-bitsets-level=0 -o %t2 %s
-// RUN: %t2
-// RUN: %clangxx_cfi -Wl,-plugin-opt,--lowertypetests-bitsets-level=1 -o %t3 %s
-// RUN: %t3
-// RUN: %clangxx_cfi -Wl,-plugin-opt,--lowertypetests-bitsets-level=2 -o %t4 %s
-// RUN: %t4
 
 // Tests that the CFI mechanism does not crash the program when making various
 // kinds of valid calls involving classes with various different linkages and




More information about the llvm-commits mailing list