1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// RUN: %clang_cc1 -E -verify %s
// expected-no-diagnostics
#define DATE_LBR __D\
ATE__
const char* test1(void) {
return __DATE\
__;
}
const char* test2(void) {
return DATE_LBR;
}
#define TIME_LBR __TIME_\
_
const char* test3(void) {
return __TIM\
E__;
}
const char* test4(void) {
return TIME_LBR;
}
#define LINE_LBR __LI\
NE__
int test5(void) {
return _\
_LINE__;
}
int test6(void) {
return LINE_LBR;
}
#define FILE_LBR __FI\
LE__
const char* test7(void) {
return __\
FILE__;
}
const char* test8(void) {
return FILE_LBR;
}
#define FILE_NAME_LBR __FILE_NA\
ME__
const char* test9(void) {
return __FILE_NAM\
E__;
}
const char* test10(void) {
return FILE_NAME_LBR;
}
#define BASE_FILE_LBR __BASE_FIL\
E__
const char* test11(void) {
return __BASE_\
FILE__;
}
const char* test12(void) {
return BASE_FILE_LBR;
}
#define INCLUDE_LEVEL_LBR __INCLUDE\
_LEVEL__
int test13(void) {
return __IN\
CLUDE_LEVEL__;
}
int test14(void) {
return INCLUDE_LEVEL_LBR;
}
#define TIMESTAMP_LBR __TIMESTA\
MP__
const char* test15(void) {
return __TIMESTA\
MP__;
}
const char* test16(void) {
return TIMESTAMP_LBR;
}
#define FLT_EVAL_METHOD_LBR __FLT_EVAL_METH\
OD__
int test17(void) {
return __FL\
T_EVAL_METHOD__;
}
int test18(void) {
return FLT_EVAL_METHOD_LBR;
}
#define COUNTER_LBR __COUNTE\
R__
int test19(void) {
return _\
_COUNTER__;
}
int test20(void) {
return COUNTER_LBR;
}
|