blob: 75f3a38baf5cff1a9d273bceafe11d1d5bccb438 [file] [log] [blame]
John Porto1d235422015-08-12 12:37:53 -07001//===- 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
John Porto1d235422015-08-12 12:37:53 -070024#endif // SUBZERO_CROSSTEST_XDEFS_H_