diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-10-27 17:49:07 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-27 17:49:07 +0000 |
| commit | 64857209fbd7bbb2d6ee241e3c783995739cc474 (patch) | |
| tree | fb88cf22ede553da7bd076855e9696fa92a3f827 /compiler-rt/test/Unit/ashlti3_test.c | |
| parent | 247687360f989aaadd913add90ab7e7a5a22fdc1 (diff) | |
| download | bcm5719-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/ashlti3_test.c')
| -rw-r--r-- | compiler-rt/test/Unit/ashlti3_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/Unit/ashlti3_test.c b/compiler-rt/test/Unit/ashlti3_test.c index 43e9245e2fe..2921a6aaa66 100644 --- a/compiler-rt/test/Unit/ashlti3_test.c +++ b/compiler-rt/test/Unit/ashlti3_test.c @@ -37,8 +37,8 @@ int test__ashlti3(ti_int a, si_int b, ti_int expected) expectedt.all = expected; printf("error in __ashlti3: 0x%llX%.16llX << %d = 0x%llX%.16llX," " expected 0x%llX%.16llX\n", - at.high, at.low, b, xt.high, xt.low, - expectedt.high, expectedt.low); + at.s.high, at.s.low, b, xt.s.high, xt.s.low, + expectedt.s.high, expectedt.s.low); } return x != expected; } |

