target-supports.exp (check-effective-target-dfp-nocache): Fix typo that breaks the check.

* lib/target-supports.exp (check-effective-target-dfp-nocache):
	Fix typo that breaks the check.

From-SVN: r152245
This commit is contained in:
Janis Johnson 2009-09-28 17:45:09 +00:00 committed by Janis Johnson
parent 2d3a1837bc
commit efc7a2a5fc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-09-28 Janis Johnson <janis187@us.ibm.com>
* lib/target-supports.exp (check-effective-target-dfp-nocache):
Fix typo that breaks the check.
2009-09-28 Olivier Hainque <hainque@adacore.com>
* gnat.dg (tagged_alloc_free.adb): New testcase.

View File

@ -1304,7 +1304,7 @@ proc check_effective_target_dfp_nocache { } {
proc check_effective_target_dfprt_nocache { } {
return [check_runtime_nocache dfprt {
typedef float d64 __attribute__((mode(DD)));
d64 x = 1.2df; y = 2.3dd; z;
d64 x = 1.2df, y = 2.3dd, z;
int main () { z = x + y; return 0; }
}]
}