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/clzti2_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/clzti2_test.c')
| -rw-r--r-- | compiler-rt/test/Unit/clzti2_test.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler-rt/test/Unit/clzti2_test.c b/compiler-rt/test/Unit/clzti2_test.c index 5aa2eb76bf9..e1229f1c4ad 100644 --- a/compiler-rt/test/Unit/clzti2_test.c +++ b/compiler-rt/test/Unit/clzti2_test.c @@ -30,7 +30,7 @@ int test__clzti2(ti_int a, si_int expected)          twords at;          at.all = a;          printf("error in __clzti2(0x%llX%.16llX) = %d, expected %d\n", -               at.high, at.low, x, expected); +               at.s.high, at.s.low, x, expected);      }      return x != expected;  } | 

