|
From: <sv...@va...> - 2015-09-04 20:54:40
|
Author: florian
Date: Fri Sep 4 21:54:34 2015
New Revision: 15624
Log:
Add an assert.
Modified:
trunk/none/tests/s390x/fpext.c
Modified: trunk/none/tests/s390x/fpext.c
==============================================================================
--- trunk/none/tests/s390x/fpext.c (original)
+++ trunk/none/tests/s390x/fpext.c Fri Sep 4 21:54:34 2015
@@ -1,5 +1,6 @@
#include <float.h>
#include <stdio.h>
+#include <assert.h>
#include "opcodes.h"
@@ -131,6 +132,7 @@
int main()
{
+ assert(sizeof(long double) == 16);
DO_L2F(4);
DO_F2L(4);
|