summaryrefslogtreecommitdiff
path: root/test/Unit/addvti3_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/addvti3_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/addvti3_test.c')
-rw-r--r--test/Unit/addvti3_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Unit/addvti3_test.c b/test/Unit/addvti3_test.c
index 14158e01..17a88649 100644
--- a/test/Unit/addvti3_test.c
+++ b/test/Unit/addvti3_test.c
@@ -38,8 +38,8 @@ int test__addvti3(ti_int a, ti_int b)
expectedt.all = expected;
printf("error in test__addvti3(0x%llX%.16llX, 0x%llX%.16llX) = "
"0x%llX%.16llX, expected 0x%llX%.16llX\n",
- at.high, at.low, bt.high, bt.low, xt.high, xt.low,
- expectedt.high, expectedt.low);
+ at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+ expectedt.s.high, expectedt.s.low);
}
return x != expected;
}