Displaying 1 result from an estimated 1 matches for "delimiter_depth".
2019 Feb 06
2
Not to consolidate two structs with the same data types (but different names) in configure/make tool chain
Hi,
I have the following C code.
#define PTR_T char *
typedef struct objcache {
PTR_T data;
int cs; /* cache size, number of objects */
int nc; /* number of cache entries */
} sh_obj_cache_t;
struct dstack {
char *delimiters;
int delimiter_depth;
int delimiter_space;
};
When it is configured/made to generate IR with the following
environment variables,
CC=clang CXX=clang++ RANLIB=llvm-ranlib CFLAGS=-flto LDFLAGS=-flto\
-fuse-ld=gold\ -Wl\,-plugin-opt=save-temps
I see all the variables declared as sh_obj_cache_t in the source code
beco...