1 // FIXME: Disable pending PR4941. 2 // RUX: clang -target x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s 2> %t && 3 // RUX: grep -- "-fno-builtin-strcat" %t && 4 // RUX: grep -- "-fno-builtin-strcpy" %t && 5 6 // FIXME: Disable pending PR4941. 7 // RUX: clang -target x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s -fbuiltin-strcat -fbuiltin-strcpy 2> %t && 8 // RUX: not grep -- "-fno-builtin-strcat" %t && 9 // RUX: not grep -- "-fno-builtin-strcpy" %t && 10 11 // RUN: %clang -target x86_64-apple-darwin9 -arch arm -### -fsyntax-only %s -fbuiltin-strcat -fbuiltin-strcpy 2> %t 12 // RUN: not grep -- "-fno-builtin-strcat" %t 13 // RUN: not grep -- "-fno-builtin-strcpy" %t 14 15