Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: crosstest/test_global.h

Issue 435353002: Subzero: Fix and clean up some cross tests. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Fix newlines and filename Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « crosstest/test_fcmp.def ('k') | crosstest/test_global.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/crosstest/test_global.h - Test prototypes --------*- C++ -*-===//
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 // This file declares the function prototypes used for crosstesting global
11 // variable access operations.
12 //
13 //===----------------------------------------------------------------------===//
14
15 // The driver and the test program may be compiled by different
16 // versions of clang, with different standard libraries that have
17 // different definitions of int8_t. Specifically, int8_t may be
18 // typedef'd as either 'char' or 'signed char', which mangle to
19 // different strings. Avoid int8_t and use an explicit myint8_t.
20 typedef signed char myint8_t;
21
1 size_t getNumArrays(); 22 size_t getNumArrays();
2 const uint8_t *getArray(size_t WhichArray, size_t &Len); 23 const uint8_t *getArray(size_t WhichArray, size_t &Len);
OLDNEW
« no previous file with comments | « crosstest/test_fcmp.def ('k') | crosstest/test_global.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698