blob: a7d302e1c9bab4797d383ddef0b11c4f4db86585 [file] [log] [blame]
sewardj99a2ceb2007-11-09 12:30:36 +00001#include <stdlib.h>
2
3static void func1(char *pointer)
4{
sewardj728ae1c2007-11-25 15:40:17 +00005 __attribute__((unused)) int dummy = 0;
sewardj99a2ceb2007-11-09 12:30:36 +00006 return;
7} /* Line 7 x86-64*/
8
9int main(int argc, char *argv[])
10{
11 func1((char *)malloc(64)); /* Line 11 */
12
13 return 0;
14} /* Line 14 x86 due to timing of stack invalidation */