You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
786 B
25 lines
786 B
//===- subzero/crosstest/xdefs.h - Definitions for the crosstests. --------===//
|
|
//
|
|
// The Subzero Code Generator
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Defines the int64 and uint64 types to avoid link-time errors when compiling
|
|
// the crosstests in LP64.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SUBZERO_CROSSTEST_XDEFS_H_
|
|
#define SUBZERO_CROSSTEST_XDEFS_H_
|
|
|
|
typedef unsigned int int32;
|
|
typedef unsigned int uint32;
|
|
typedef long long int64;
|
|
typedef unsigned long long uint64;
|
|
typedef unsigned int SizeT;
|
|
|
|
#endif // SUBZERO_CROSSTEST_XDEFS_H_
|