do not take the sanpshot and forget about the stop info. It is possible that the variable expression has gone out of scope, we'll revise the hit count due to the false alarms. llvm-svn: 161892
15 lines
136 B
C
15 lines
136 B
C
typedef struct
|
|
{
|
|
int a;
|
|
float b;
|
|
} mystruct;
|
|
|
|
int main()
|
|
{
|
|
mystruct c;
|
|
|
|
c.a = 5;
|
|
c.b = 3.6;
|
|
|
|
return 0;
|
|
} |