Fix issue 58135 about _C_LABEL_STRING macro w/o space between literal in C++

Change-Id: Iefc3c090071f3629998515d43907139b07105672
This commit is contained in:
Andrew Hsieh
2013-09-06 17:34:31 +08:00
parent 7d80bf6ab4
commit c2e61c3c01

View File

@@ -32,7 +32,7 @@
#ifdef __LEADING_UNDERSCORE
#define _C_LABEL(x) __CONCAT(_,x)
#define _C_LABEL_STRING(x) "_"x
#define _C_LABEL_STRING(x) "_" x
#else
#define _C_LABEL(x) x
#define _C_LABEL_STRING(x) x