annotate libmudflap/testsuite/libmudflap.c/pass35-frag.c @ 32:59194914942b
add documents.
CbC-INSTALL: howto build the gcc for various systems.
CbC-implementation.ja: methods of implementation for CbC's statement.
author |
kent <kent@cr.ie.u-ryukyu.ac.jp> |
date |
Tue, 08 Dec 2009 14:07:28 +0900 |
parents |
a06113de4d67 |
children |
|
rev |
line source |
0
|
1 #include <stdio.h>
|
|
2 #include <stdlib.h>
|
|
3 #include <string.h>
|
|
4
|
|
5 extern char end []; /* Any old symbol we're sure will be defined. */
|
|
6 /* { dg-warning "cannot track unknown size extern" "cannot track unknown size extern" { target *-*-* } 0 } */
|
|
7
|
|
8 int main ()
|
|
9 {
|
|
10 /* dummy register */
|
|
11 __mf_register ((void *) end, 1, __MF_TYPE_GUESS, "end");
|
|
12 char z = end[0];
|
|
13 return z & 0;
|
|
14 }
|