diff --git a/clang/test/CodeGenCXX/cheri/frame_layout_floating_point.cpp b/clang/test/CodeGenCXX/cheri/frame_layout_floating_point.cpp deleted file mode 100644 index c2dcc8d4d56b..000000000000 --- a/clang/test/CodeGenCXX/cheri/frame_layout_floating_point.cpp +++ /dev/null @@ -1,18 +0,0 @@ -// REQUIRES: mips-registered-target -// RUN: %cheri_purecap_cc1 -mframe-pointer=all -target-cpu mips4 -msoft-float -mfloat-abi soft -target-linker-version 305 \ -// RUN: -std=c++11 -fdeprecated-macro -fcxx-exceptions -fexceptions -o - -O0 -S %s 2>&1 -template void c(b...) { - double k __attribute__((__aligned__(a))); -} -template void g() { - constexpr int a = 4096; - constexpr int h = 2048; - try { - c; - } catch (int) { - } -} -const bool i = true; -void j() { g; } diff --git a/clang/test/CodeGenCXX/cheri/frame_layout_hardfloat.cpp b/clang/test/CodeGenCXX/cheri/frame_layout_hardfloat.cpp deleted file mode 100644 index 15e5f25bf9f4..000000000000 --- a/clang/test/CodeGenCXX/cheri/frame_layout_hardfloat.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// REQUIRES: mips-registered-target -// RUN: %cheri_purecap_cc1 -target-cpu mips4 -std=c++11 -fdeprecated-macro -fcxx-exceptions -fexceptions -o - -O0 -S %s -// REQUIRES: asserts - -void a(double) {}