OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
Ivan Posva
2012/01/10 00:28:09
Time travel.
Mads Ager (google)
2012/01/10 06:55:05
Done.
| |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_GLOBALS_H_ | 5 #ifndef VM_GLOBALS_H_ |
6 #define VM_GLOBALS_H_ | 6 #define VM_GLOBALS_H_ |
7 | 7 |
8 // This file contains global definitions for the VM library only. Anything that | 8 // This file contains global definitions for the VM library only. Anything that |
9 // is more globally useful should be added to 'vm/globals.h'. | 9 // is more globally useful should be added to 'vm/globals.h'. |
10 | 10 |
11 #include "platform/globals.h" | 11 #include "platform/globals.h" |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
274 // contants are 16 byte aligned. | 274 // contants are 16 byte aligned. |
275 #if defined(TARGET_OS_WINDOWS) | 275 #if defined(TARGET_OS_WINDOWS) |
276 #define ALIGN16 __declspec(align(16)) | 276 #define ALIGN16 __declspec(align(16)) |
277 #else | 277 #else |
278 #define ALIGN16 __attribute__((aligned(16))) | 278 #define ALIGN16 __attribute__((aligned(16))) |
279 #endif | 279 #endif |
280 | 280 |
281 } // namespace dart | 281 } // namespace dart |
282 | 282 |
283 #endif // VM_GLOBALS_H_ | 283 #endif // VM_GLOBALS_H_ |
OLD | NEW |