Displaying 2 results from an estimated 2 matches for "__private_extern__".
2007 Apr 20
1
[LLVMdev] llvm-gcc make check
...bilityMacros.h
2007-04-18 16:46:04.000000000 -0500
***************
*** 13,23 ****
#if defined(__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ == 3 &&
__GNUC_MINOR__ >= 1))
#endif /* DARWIN_GCC4_BREAKAGE_CHECK */
-
-
- #if defined( DARWIN_MACOSX_DEPLOYMENT_TARGET_CHECK )
- __private_extern__ int _dyld_func_lookup(
- const char *dyld_func_name,
- unsigned long *address);
-
- #endif /* DARWIN_MACOSX_DEPLOYMENT_TARGET_CHECK */
--- 13,15 ----
math.h
/users/dag/projects/cascade/compiler/llvm-gcc/fixincludes/tests/base/math.h
differ: byte 501, line 22
*** math.h 2007-04-20 18:38:11.000000...
2009 Jun 03
1
[LLVMdev] RFA: Alignment of Strings
One of our developers pointed out that GCC generates something akin to
this on Darwin:
$ cat t.c
__private_extern__ void bar(const char *format, ...)
__attribute__ ((format (printf, 1, 2)));
void foo(const char *i, const char *b) {
bar("this is some error message that is kind of longish.");
}
$ gcc -arch i386 -S -o - t.c -Os
.cstring
.align 2
LC0:
.ascii "this is some error message th...