diff options
| author | Glenn Morris | 2013-03-31 06:17:42 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-03-31 06:17:42 -0400 |
| commit | 6ea3f01e74cbae9dc1366a07aea09d9665167981 (patch) | |
| tree | 5fbd5428ebafb4b0ea7d6c22693ae9d911df7e45 | |
| parent | 9275998872e6932aee942f8805ac06220688c009 (diff) | |
| download | emacs-6ea3f01e74cbae9dc1366a07aea09d9665167981.tar.gz emacs-6ea3f01e74cbae9dc1366a07aea09d9665167981.zip | |
Auto-commit of generated files.
| -rwxr-xr-x | autogen/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen/configure b/autogen/configure index 126248beced..23685c523ac 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -23965,8 +23965,9 @@ else | |||
| 23965 | #if \ | 23965 | #if \ |
| 23966 | (__GNUC__ || __IBMC__ || __IBMCPP__ \ | 23966 | (__GNUC__ || __IBMC__ || __IBMCPP__ \ |
| 23967 | || 0x5110 <= __SUNPRO_C || 1300 <= _MSC_VER) | 23967 | || 0x5110 <= __SUNPRO_C || 1300 <= _MSC_VER) |
| 23968 | int alignas (8) alignas_int = 1; | 23968 | struct alignas_test { char c; char alignas (8) alignas_8; }; |
| 23969 | char test_alignas[_Alignof (alignas_int) == 8 ? 1 : -1]; | 23969 | char test_alignas[offsetof (struct alignas_test, alignas_8) == 8 |
| 23970 | ? 1 : -1]; | ||
| 23970 | #endif | 23971 | #endif |
| 23971 | 23972 | ||
| 23972 | int | 23973 | int |