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
18typedef unsigned int int32;
19typedef unsigned int uint32;
20typedef long long int64;
21typedef unsigned long long uint64;
22typedef unsigned int SizeT;
23
24#endif // SUBZERO_CROSSTEST_XDEFS_H_
25