[test-suite] r331185 - Add a missing `||` operator in a preprocessor condition.

James Dennett via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 30 08:15:15 PDT 2018


Author: jdennett
Date: Mon Apr 30 08:15:15 2018
New Revision: 331185

URL: http://llvm.org/viewvc/llvm-project?rev=331185&view=rev
Log:
Add a missing `||` operator in a preprocessor condition.

This fixes a longstanding syntax error that's apparently been benign.

Modified:
    test-suite/trunk/MultiSource/Benchmarks/MallocBench/make/make.h

Modified: test-suite/trunk/MultiSource/Benchmarks/MallocBench/make/make.h
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/MallocBench/make/make.h?rev=331185&r1=331184&r2=331185&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/MallocBench/make/make.h (original)
+++ test-suite/trunk/MultiSource/Benchmarks/MallocBench/make/make.h Mon Apr 30 08:15:15 2018
@@ -83,7 +83,7 @@ the Free Software Foundation, 675 Mass A
 
 
 #if	(defined(STDC_HEADERS) || defined(__GNU_LIBRARY__) || \
-	   defined(POSIX) || defined(__FreeBSD__) || defined(__APPLE__) \
+	   defined(POSIX) || defined(__FreeBSD__) || defined(__APPLE__) || \
      defined(__OpenBSD__))
 #include <stdlib.h>
 #include <string.h>




More information about the llvm-commits mailing list