Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2009 The Native Client Authors. All rights reserved. | 2 * Copyright 2009 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
| 4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* | 7 /* |
| 8 * NaCl Service Runtime API. | 8 * NaCl Service Runtime API. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 | 11 |
| 12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ | 12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ |
| 13 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ | 13 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ |
| 14 | 14 |
| 15 #if defined(__powerpc64__) || defined(__s390x__) || defined(__arch64__) || \ | 15 #if defined(__powerpc64__) || defined(__s390x__) || defined(__arch64__) || \ |
|
Mark Seaborn
2012/09/16 02:46:06
Can you enclose this whole block in "#if !defined(
petarj
2012/09/18 00:22:15
Done.
| |
| 16 defined(__sparcv9) || defined(__x86_64__) || defined(_AMD64_) || \ | 16 defined(__sparcv9) || defined(__x86_64__) || defined(_AMD64_) || \ |
| 17 defined(_M_AMD64) | 17 defined(_M_AMD64) |
| 18 #define __WORDSIZE 64 | 18 #define __WORDSIZE 64 |
| 19 #else | 19 #else |
| 20 #define __WORDSIZE 32 | 20 # if !defined __WORDSIZE |
| 21 #endif | 21 # define __WORDSIZE 32 |
| 22 # endif | |
| 22 | 23 |
| 23 #endif | 24 #endif |
| 25 #endif | |
| OLD | NEW |