1*03ce13f7SAndroid Build Coastguard Worker //===- subzero/crosstest/xdefs.h - Definitions for the crosstests. --------===// 2*03ce13f7SAndroid Build Coastguard Worker // 3*03ce13f7SAndroid Build Coastguard Worker // The Subzero Code Generator 4*03ce13f7SAndroid Build Coastguard Worker // 5*03ce13f7SAndroid Build Coastguard Worker // This file is distributed under the University of Illinois Open Source 6*03ce13f7SAndroid Build Coastguard Worker // License. See LICENSE.TXT for details. 7*03ce13f7SAndroid Build Coastguard Worker // 8*03ce13f7SAndroid Build Coastguard Worker //===----------------------------------------------------------------------===// 9*03ce13f7SAndroid Build Coastguard Worker // 10*03ce13f7SAndroid Build Coastguard Worker // Defines the int64 and uint64 types to avoid link-time errors when compiling 11*03ce13f7SAndroid Build Coastguard Worker // the crosstests in LP64. 12*03ce13f7SAndroid Build Coastguard Worker // 13*03ce13f7SAndroid Build Coastguard Worker //===----------------------------------------------------------------------===// 14*03ce13f7SAndroid Build Coastguard Worker 15*03ce13f7SAndroid Build Coastguard Worker #ifndef SUBZERO_CROSSTEST_XDEFS_H_ 16*03ce13f7SAndroid Build Coastguard Worker #define SUBZERO_CROSSTEST_XDEFS_H_ 17*03ce13f7SAndroid Build Coastguard Worker 18*03ce13f7SAndroid Build Coastguard Worker typedef unsigned int int32; 19*03ce13f7SAndroid Build Coastguard Worker typedef unsigned int uint32; 20*03ce13f7SAndroid Build Coastguard Worker typedef long long int64; 21*03ce13f7SAndroid Build Coastguard Worker typedef unsigned long long uint64; 22*03ce13f7SAndroid Build Coastguard Worker typedef unsigned int SizeT; 23*03ce13f7SAndroid Build Coastguard Worker 24*03ce13f7SAndroid Build Coastguard Worker #endif // SUBZERO_CROSSTEST_XDEFS_H_ 25