summaryrefslogtreecommitdiff
path: root/test/Unit/cmpti2_test.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-10-27 17:49:07 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-10-27 17:49:07 +0000
commitcff5248a12a36a7225b707b23ac088f5ba214f8a (patch)
treec007c112e7256b174f60726d481f812c1fd1d277 /test/Unit/cmpti2_test.c
parent4467b65ff6e342ad4e8bef86f4e948f56e814bdf (diff)
downloadcompiler-rt-cff5248a12a36a7225b707b23ac088f5ba214f8a.tar.gz
compiler-rt-cff5248a12a36a7225b707b23ac088f5ba214f8a.tar.bz2
compiler-rt-cff5248a12a36a7225b707b23ac088f5ba214f8a.tar.xz
Fix tests broken by removal of de-anonyomizing structs.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@85261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Unit/cmpti2_test.c')
-rw-r--r--test/Unit/cmpti2_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Unit/cmpti2_test.c b/test/Unit/cmpti2_test.c
index ef0e1923..f590ddfe 100644
--- a/test/Unit/cmpti2_test.c
+++ b/test/Unit/cmpti2_test.c
@@ -32,7 +32,7 @@ int test__cmpti2(ti_int a, ti_int b, si_int expected)
twords bt;
bt.all = b;
printf("error in __cmpti2(0x%llX%.16llX, 0x%llX%.16llX) = %d, expected %d\n",
- at.high, at.low, bt.high, bt.low, x, expected);
+ at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
}
return x != expected;
}