]> granicus.if.org Git - clang/commitdiff
Misc fixes to fix tests on OpenBSD, per email to cfe-commits. Patches
authorEli Friedman <eli.friedman@gmail.com>
Fri, 10 Jul 2009 20:10:06 +0000 (20:10 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Fri, 10 Jul 2009 20:10:06 +0000 (20:10 +0000)
by Jonathan Gray and Krister Walfridsson.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75268 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/casts.c
test/Driver/dragonfly.c
test/Driver/freebsd.c
test/Sema/format-attr-pr4470.c

index 5e4222bc84bebedbbec7ab65cf4c65f255a0bb64..eff8dbb484beba609f53b9cf191982d065b2eb83 100644 (file)
@@ -4,6 +4,8 @@
 // 'struct sockaddr *'. 
 
 #include <sys/socket.h>
+#include <sys/types.h>
+
 void f(int sock) {
   struct sockaddr_storage storage;
   struct sockaddr* sockaddr = (struct sockaddr*)&storage;
index 5d7b0b0f004531d3189df758ef51b3f3fc7d74de..5d0241870fe36d1693280dd61a2af8efb82e6ba3 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: clang -ccc-host-triple amd64-pc-dragonfly %s -### 2> %t.log &&
 // RUN: grep 'clang-cc" "-triple" "x86_64-pc-dragonfly"' %t.log &&
 // RUN: grep 'as" "-o" ".*\.o" ".*\.s' %t.log &&
-// RUN: grep 'ld" "-dynamic-linker" ".*ld-elf.*" "-o" "a\.out" ".*crt1.o" ".*crti.o" "crtbegin.o" ".*\.o" "-L.*/gcc.*" .* "-lc" "-lgcc" ".*crtend.o" ".*crtn.o"' %t.log &&
+// RUN: grep 'ld" "-dynamic-linker" ".*ld-elf.*" "-o" "a\.out" ".*crt1.o" ".*crti.o" ".*crtbegin.o" ".*\.o" "-L.*/gcc.*" .* "-lc" "-lgcc" ".*crtend.o" ".*crtn.o"' %t.log &&
 // RUN: true
 
index 91258d9e57280410e9a0464cc2a9289dfb7e67f0..f2db110d748703d5487ff63e7d3495eb9910cef2 100644 (file)
@@ -2,6 +2,6 @@
 // RUN: cat %t.log &&
 // RUN: grep 'clang-cc" "-triple" "powerpc64-pc-freebsd8"' %t.log &&
 // RUN: grep 'as" "-o" ".*\.o" ".*\.s' %t.log &&
-// RUN: grep 'ld" "--eh-frame-hdr" "-dynamic-linker" ".*ld-elf.*" "-o" "a\.out" ".*crt1.o" ".*crti.o" "crtbegin.o" ".*\.o" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" ".*crtend.o" ".*crtn.o"' %t.log &&
+// RUN: grep 'ld" "--eh-frame-hdr" "-dynamic-linker" ".*ld-elf.*" "-o" "a\.out" ".*crt1.o" ".*crti.o" ".*crtbegin.o" ".*\.o" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" ".*crtend.o" ".*crtn.o"' %t.log &&
 // RUN: true
 
index cba3adf1d6de4cb8b50a88cd9ac4029e62ce39b8..c03c573b7274448962620500d1df6f93fc89a578 100644 (file)
@@ -1,6 +1,7 @@
 // RUN: clang-cc -fsyntax-only -verify -Wformat=2 %s
 
 #include <stdio.h>
+#include <stdarg.h>
 
 const char *foo(const char *format) __attribute__((format_arg(1)));