svn commit: r365429 - head/contrib/llvm-project/openmp/runtime/src

Dimitry Andric dim at FreeBSD.org
Mon Sep 7 20:10:04 UTC 2020


Author: dim
Date: Mon Sep  7 20:10:03 2020
New Revision: 365429
URL: https://svnweb.freebsd.org/changeset/base/365429

Log:
  Merge commit 47b0262d3 from llvm git (by me):
  
    Add <stdarg.h> include to kmp_os.h, to get the va_list type, required
    after cde8f4c164a2. Sort system includes, while here.
  
  The original merged commit works fine by itself on head, but fails to
  compile on stable branches because stdarg.h is not implicitly pulled in.
  
  MFC after:	immediately, to fix failing builds on stable/{11,12}

Modified:
  head/contrib/llvm-project/openmp/runtime/src/kmp_os.h

Modified: head/contrib/llvm-project/openmp/runtime/src/kmp_os.h
==============================================================================
--- head/contrib/llvm-project/openmp/runtime/src/kmp_os.h	Mon Sep  7 20:05:18 2020	(r365428)
+++ head/contrib/llvm-project/openmp/runtime/src/kmp_os.h	Mon Sep  7 20:10:03 2020	(r365429)
@@ -14,8 +14,9 @@
 #define KMP_OS_H
 
 #include "kmp_config.h"
-#include <stdlib.h>
 #include <atomic>
+#include <stdarg.h>
+#include <stdlib.h>
 
 #define KMP_FTN_PLAIN 1
 #define KMP_FTN_APPEND 2


More information about the svn-src-head mailing list