~ubuntu-branches/debian/sid/gcc-4.8/sid

« back to all changes in this revision

Viewing changes to .svn/pristine/a3/a34738215915f89626088e3af35c1be1f78c1bb7.svn-base

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-12-19 19:48:34 UTC
  • Revision ID: package-import@ubuntu.com-20141219194834-4dz1q7rrn5pad823
Tags: 4.8.4-1
* GCC 4.8.4 release.
  - Fix PR target/61407 (darwin), PR middle-end/58624 (ice),
    PR sanitizer/64265 (wrong code).
* Require recent binutils to pass go test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# DP: Disable lock-2.c test on kfreebsd-*
 
2
 
 
3
--- a/src/libgomp/testsuite/libgomp.c/lock-2.c
 
4
+++ b/src/libgomp/testsuite/libgomp.c/lock-2.c
 
5
@@ -4,6 +4,9 @@
 
6
 int
 
7
 main (void)
 
8
 {
 
9
+#ifdef __FreeBSD_kernel__
 
10
+  return 1;
 
11
+#endif
 
12
   int l = 0;
 
13
   omp_nest_lock_t lock;
 
14
   omp_init_nest_lock (&lock);
 
15