re PR libmudflap/19319 (Mudflap produce many violations on simple, correct c++ program)

2005-02-13  Frank Ch. Eigler  <fche@redhat.com>

	PR mudflap/19319
	* testsuite/libmudflap.c++/pass55-frag.c: New test.

From-SVN: r94983
This commit is contained in:
Frank Ch. Eigler 2005-02-13 12:49:34 +00:00 committed by Frank Ch. Eigler
parent ae63a1cc46
commit 478cc36ff6
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-02-13 Frank Ch. Eigler <fche@redhat.com>
PR mudflap/19319
* testsuite/libmudflap.c++/pass55-frag.c: New test.
2005-01-05 Richard Henderson <rth@redhat.com>
* testsuite/libmudflap.c/pass32-frag.c: Fix typo.

View File

@ -0,0 +1,6 @@
#include <vector>
int main() {
std::vector<int> v;
v.push_back(1);
}