Lines Matching full:date
1 // RUN: %clang_cc1 -source-date-epoch 0 -E %s | FileCheck %s --check-prefix=19700101
3 // 19700101: const char date[] = "Jan 1 1970";
7 // RUN: %clang_cc1 -source-date-epoch 2147483647 -E -Wdate-time %s 2>&1 | FileCheck %s --check-pref…
9 // Y2038: warning: expansion of date or time macro is not reproducible [-Wdate-time]
10 // Y2038: const char date[] = "Jan 19 2038";
15 // RUN: %if !system-windows && clang-target-64-bits %{ %clang_cc1 -source-date-epoch 253402300799 -…
17 // 99991231: warning: expansion of date or time macro is not reproducible [-Wdate-time]
18 // 99991231: const char date[] = "Dec 31 9999";
22 // RUN: not %clang_cc1 -source-date-epoch 253402300800 -E %s 2>&1 | FileCheck %s --check-prefix=TOO…
26 // RUN: not %clang_cc1 -source-date-epoch 0x0 -E %s 2>&1 | FileCheck %s --check-prefix=NOTDECIMAL
30 const char date[] = __DATE__; variable