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

Side by Side Diff: crosstest/test_fcmp.def

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_cast_main.cpp ('k') | crosstest/test_global.h » ('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_fcmp.def - macros for tests -----*- 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 defines macros for crosstesting the fcmp instruction.
11 //
12 //===----------------------------------------------------------------------===//
13
1 #ifndef TEST_FCMP_DEF 14 #ifndef TEST_FCMP_DEF
2 #define TEST_FCMP_DEF 15 #define TEST_FCMP_DEF
3 16
4 #define XSTR(s) STR(s) 17 #define XSTR(s) STR(s)
5 #define STR(s) #s 18 #define STR(s) #s
6 19
7 #define FCMP_TABLE \ 20 #define FCMP_TABLE \
8 /* cmp */ \ 21 /* cmp */ \
9 X(False) \ 22 X(False) \
10 X(Oeq) \ 23 X(Oeq) \
11 X(Ogt) \ 24 X(Ogt) \
12 X(Oge) \ 25 X(Oge) \
13 X(Olt) \ 26 X(Olt) \
14 X(Ole) \ 27 X(Ole) \
15 X(One) \ 28 X(One) \
16 X(Ord) \ 29 X(Ord) \
17 X(Ueq) \ 30 X(Ueq) \
18 X(Ugt) \ 31 X(Ugt) \
19 X(Uge) \ 32 X(Uge) \
20 X(Ult) \ 33 X(Ult) \
21 X(Ule) \ 34 X(Ule) \
22 X(Une) \ 35 X(Une) \
23 X(Uno) \ 36 X(Uno) \
24 X(True) \ 37 X(True) \
25 //#define X(cmp) 38 //#define X(cmp)
26 39
27 #endif // TEST_FCMP_DEF 40 #endif // TEST_FCMP_DEF
OLDNEW
« no previous file with comments | « crosstest/test_cast_main.cpp ('k') | crosstest/test_global.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698