X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Feh%2Fomit-frame-pointer.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Feh%2Fomit-frame-pointer.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=01821a12fe9f23590a3501844c34bc735db65573;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.dg/eh/omit-frame-pointer.C b/gcc/testsuite/g++.dg/eh/omit-frame-pointer.C deleted file mode 100644 index 01821a12..00000000 --- a/gcc/testsuite/g++.dg/eh/omit-frame-pointer.C +++ /dev/null @@ -1,26 +0,0 @@ -// { dg-do run } -// { dg-options -fomit-frame-pointer } -// { dg-options "-fomit-frame-pointer -mno-accumulate-outgoing-args" { target i?86-*-* } } - -#include - -class Bug -{ -}; - -int throw_bug() -{ - throw Bug(); - - return 0; -} - -int main() -{ - try { - std::cout << throw_bug(); - } catch (Bug bug) { - }; - - return 0; -}