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