summaryrefslogtreecommitdiff
path: root/libmudflap/testsuite/libmudflap.c/pass56-frag.c
diff options
context:
space:
mode:
authorfche <fche@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-17 17:20:49 +0000
committerfche <fche@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-17 17:20:49 +0000
commit98c54c5e0e54290247ede10b60852f9b638ea180 (patch)
tree051d2a53b671d96bf6119f3cba06ea10336b65f8 /libmudflap/testsuite/libmudflap.c/pass56-frag.c
parentcf28d4b1ad6491ff30ecd6a426d088ccb864277a (diff)
downloadgcc-98c54c5e0e54290247ede10b60852f9b638ea180.tar.gz
2005-03-17 Frank Ch. Eigler <fche@redhat.com>
* mf-runtime.c (__mfu_check): Respect ignore_reads configuration. * testsuite/libmudflap.c/{pass56,fail39}-frag.c: New tests. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96620 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap/testsuite/libmudflap.c/pass56-frag.c')
-rw-r--r--libmudflap/testsuite/libmudflap.c/pass56-frag.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libmudflap/testsuite/libmudflap.c/pass56-frag.c b/libmudflap/testsuite/libmudflap.c/pass56-frag.c
new file mode 100644
index 00000000000..e22fc8dbfd6
--- /dev/null
+++ b/libmudflap/testsuite/libmudflap.c/pass56-frag.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main ()
+{
+ volatile int *k = (int *) malloc (sizeof (int));
+ volatile int l;
+ if (k == NULL) abort ();
+ *k = 5;
+ free ((void *) k);
+ __mf_set_options ("-ignore-reads");
+ l = *k; /* Should not trip, even though memory region just freed. */
+ return 0;
+}