Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:gp

13 char *gp;
42 // CHECK: = load i8** @gp
44 strcpy(gp, "Hi there");
92 strcpy(gp = gbuf, "Hi there");
99 strcpy(++gp, "Hi there");
106 strcpy(gp++, "Hi there");
113 strcpy(--gp, "Hi there");
120 strcpy(gp--, "Hi there");
127 strcpy(gp += 1, "Hi there");
133 gi = __builtin_object_size(gp++, 0);
135 gi = __builtin_object_size(gp++, 1);
137 gi = __builtin_object_size(gp++, 2);
139 gi = __builtin_object_size(gp++, 3);