mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
[Attributor][Fix] Ensure the attribute names are created properly
The names of the attributes were not always created properly which caused problems with the yaml output. llvm-svn: 370956
This commit is contained in:
parent
c22687cbc7
commit
9319be4cee
@ -69,7 +69,9 @@ STATISTIC(NumAttributesManifested,
|
||||
#define BUILD_STAT_MSG_IR_ATTR(TYPE, NAME) \
|
||||
("Number of " #TYPE " marked '" #NAME "'")
|
||||
#define BUILD_STAT_NAME(NAME, TYPE) NumIR##TYPE##_##NAME
|
||||
#define STATS_DECL(NAME, TYPE, MSG) STATISTIC(BUILD_STAT_NAME(NAME, TYPE), MSG);
|
||||
#define STATS_DECL_(NAME, MSG) STATISTIC(NAME, MSG);
|
||||
#define STATS_DECL(NAME, TYPE, MSG) \
|
||||
STATS_DECL_(BUILD_STAT_NAME(NAME, TYPE), MSG);
|
||||
#define STATS_TRACK(NAME, TYPE) ++(BUILD_STAT_NAME(NAME, TYPE));
|
||||
#define STATS_DECLTRACK(NAME, TYPE, MSG) \
|
||||
{ \
|
||||
|
Loading…
Reference in New Issue
Block a user