Fix typo that breaks the check.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152245
138bc75d-0d04-0410-961f-
82ee72b054a4
+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.
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; }
}]
}