]> granicus.if.org Git - clang/commitdiff
Add target triples to fix test on non-x86.
authorPeter Collingbourne <peter@pcc.me.uk>
Fri, 16 Sep 2016 22:26:45 +0000 (22:26 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Fri, 16 Sep 2016 22:26:45 +0000 (22:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@281790 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/nobuiltin.c

index fa71d60cc7bd67981924966993c9e2d50a11034d..876c7b3276be510c38e3d37034539744c142f7d5 100644 (file)
@@ -1,6 +1,6 @@
-// RUN: %clang_cc1 -O1 -S -o - %s | FileCheck -check-prefix=STRCPY -check-prefix=MEMSET %s
-// RUN: %clang_cc1 -fno-builtin -O1 -S -o - %s | FileCheck -check-prefix=NOSTRCPY -check-prefix=NOMEMSET %s
-// RUN: %clang_cc1 -fno-builtin-memset -O1 -S -o - %s | FileCheck -check-prefix=STRCPY -check-prefix=NOMEMSET %s
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -O1 -S -o - %s | FileCheck -check-prefix=STRCPY -check-prefix=MEMSET %s
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -fno-builtin -O1 -S -o - %s | FileCheck -check-prefix=NOSTRCPY -check-prefix=NOMEMSET %s
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -fno-builtin-memset -O1 -S -o - %s | FileCheck -check-prefix=STRCPY -check-prefix=NOMEMSET %s
 
 void PR13497() {
   char content[2];