diff options
Diffstat (limited to 'test/cfi/sibling.cpp')
-rw-r--r-- | test/cfi/sibling.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/test/cfi/sibling.cpp b/test/cfi/sibling.cpp index a865cbc0cf6b..9f32302ed5e6 100644 --- a/test/cfi/sibling.cpp +++ b/test/cfi/sibling.cpp @@ -37,20 +37,7 @@ struct C : A { }; 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>(); B *b = new B; break_optimization(b); |