diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
commit | 5c909fa013fc285f010a95e8d387e0ef3412da9c (patch) | |
tree | 1059d068ad281f4776ff44cd414574f99a460023 /test/cfi/simple-fail.cpp | |
parent | f31bcc68c72371a2bf63aead9f3373a1ff2053b6 (diff) |
Notes
Diffstat (limited to 'test/cfi/simple-fail.cpp')
-rw-r--r-- | test/cfi/simple-fail.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/test/cfi/simple-fail.cpp b/test/cfi/simple-fail.cpp index c7bebb0deccc..92b1322718f8 100644 --- a/test/cfi/simple-fail.cpp +++ b/test/cfi/simple-fail.cpp @@ -74,20 +74,7 @@ struct B { void B::f() {} int main() { -#ifdef B32 - break_optimization(new Deriver<B, 0>); -#endif - -#ifdef B64 - break_optimization(new Deriver<B, 0>); - break_optimization(new Deriver<B, 1>); -#endif - -#ifdef BM - break_optimization(new Deriver<B, 0>); - break_optimization(new Deriver<B, 1>); - break_optimization(new Deriver<B, 2>); -#endif + create_derivers<B>(); A *a = new A; break_optimization(a); |