diff options
| author | Eli Zaretskii | 2013-03-31 15:36:07 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-03-31 15:36:07 +0300 |
| commit | 65d72c1bf862d339d72d760e7ac8ccbc4837f06b (patch) | |
| tree | 3d902ee01eda40ee5975dc42277e2495cef2996c /autogen | |
| parent | f1aa11971a74b7b2fa0f5baaaaf21dfbd388de6b (diff) | |
| parent | 6ea3f01e74cbae9dc1366a07aea09d9665167981 (diff) | |
| download | emacs-65d72c1bf862d339d72d760e7ac8ccbc4837f06b.tar.gz emacs-65d72c1bf862d339d72d760e7ac8ccbc4837f06b.zip | |
Merge from trunk.
Diffstat (limited to 'autogen')
| -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 |