OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. |
5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 #endif | 173 #endif |
174 | 174 |
175 #endif /* ARM */ | 175 #endif /* ARM */ |
176 | 176 |
177 /* CPU(ARM64) - AArch64 64-bit */ | 177 /* CPU(ARM64) - AArch64 64-bit */ |
178 #if defined(__aarch64__) | 178 #if defined(__aarch64__) |
179 #define WTF_CPU_ARM64 1 | 179 #define WTF_CPU_ARM64 1 |
180 #define WTF_CPU_64BIT 1 | 180 #define WTF_CPU_64BIT 1 |
181 #endif | 181 #endif |
182 | 182 |
183 /* CPU(MIPS64) - Mips 64-bit */ | |
Mads Ager (chromium)
2014/08/18 06:54:16
This change looks unrelated and unused. Could you
petarj
2014/08/18 13:05:18
Done.
| |
184 #if defined(__mips__) && defined(__LP64__) | |
185 #define WTF_CPU_MIPS64 1 | |
186 #define WTF_CPU_64BIT 1 | |
187 #endif | |
188 | |
183 #endif /* WTF_CPU_h */ | 189 #endif /* WTF_CPU_h */ |
OLD | NEW |