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