зеркало из https://github.com/microsoft/clang-1.git
13 строки
641 B
C
13 строки
641 B
C
|
// RUN: clang -ccc-host-triple x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s 2> %t &&
|
||
|
// RUN: grep -- "-fno-builtin-strcat" %t &&
|
||
|
// RUN: grep -- "-fno-builtin-strcpy" %t &&
|
||
|
|
||
|
// RUN: clang -ccc-host-triple x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s -fbuiltin-strcat -fbuiltin-strcpy 2> %t &&
|
||
|
// RUN: not grep -- "-fno-builtin-strcat" %t &&
|
||
|
// RUN: not grep -- "-fno-builtin-strcpy" %t &&
|
||
|
|
||
|
// RUN: clang -ccc-no-clang -ccc-host-triple x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s -fbuiltin-strcat -fbuiltin-strcpy 2> %t &&
|
||
|
// RUN: not grep -- "-fno-builtin-strcat" %t &&
|
||
|
// RUN: not grep -- "-fno-builtin-strcpy" %t
|
||
|
|