Fix tests broken by removal of de-anonyomizing structs.
llvm-svn: 85261
diff --git a/compiler-rt/test/Unit/modti3_test.c b/compiler-rt/test/Unit/modti3_test.c
index 523d84a..3cbccbe 100644
--- a/compiler-rt/test/Unit/modti3_test.c
+++ b/compiler-rt/test/Unit/modti3_test.c
@@ -35,8 +35,8 @@
expectedt.all = expected;
printf("error in __modti3: 0x%.16llX%.16llX %% 0x%.16llX%.16llX = "
"0x%.16llX%.16llX, expected 0x%.16llX%.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;
}