summaryrefslogtreecommitdiffstats
path: root/compiler-rt/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
commit64857209fbd7bbb2d6ee241e3c783995739cc474 (patch)
treefb88cf22ede553da7bd076855e9696fa92a3f827 /compiler-rt/test/Unit/cmpti2_test.c
parent247687360f989aaadd913add90ab7e7a5a22fdc1 (diff)
downloadbcm5719-llvm-64857209fbd7bbb2d6ee241e3c783995739cc474.tar.gz
bcm5719-llvm-64857209fbd7bbb2d6ee241e3c783995739cc474.zip
Fix tests broken by removal of de-anonyomizing structs.
llvm-svn: 85261
Diffstat (limited to 'compiler-rt/test/Unit/cmpti2_test.c')
-rw-r--r--compiler-rt/test/Unit/cmpti2_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/Unit/cmpti2_test.c b/compiler-rt/test/Unit/cmpti2_test.c
index ef0e1923fd1..f590ddfe5f6 100644
--- a/compiler-rt/test/Unit/cmpti2_test.c
+++ b/compiler-rt/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;
}
OpenPOWER on IntegriCloud