brintos

brintos / llvm-project-archived public Read only

0
0
Text · 277 B · 0f3c975 Raw
25 lines · c
1 2#ifndef TARGETED_TOP_H3#define TARGETED_TOP_H4 5#include "targeted-nested1.h"6 7enum {8  VALUE = 39};10 11extern int TopVar;12 13typedef struct {14  int x;15  int y;16#include "targeted-fields.h"17} Vector;18 19static inline int vector_get_x(Vector v) {20  int x = v.x;21  return x;22}23 24#endif25