summaryrefslogtreecommitdiff
path: root/test/CodeGen/always_inline.c
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-09-11 21:10:12 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-09-11 21:10:12 +0000
commit42146aa582796ee5b876c8b4114bada5b55ed4d3 (patch)
tree1b2c1a23137a077bb0d532ece19987511da2cabe /test/CodeGen/always_inline.c
parent82c98a0a55f9444d62797d90e550f8559d5c4282 (diff)
downloadclang-42146aa582796ee5b876c8b4114bada5b55ed4d3.tar.gz
Specify target triple in alwaysinline tests.
This should fix the tests on Windows (failing due to mangling differencies). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247473 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/always_inline.c')
-rw-r--r--test/CodeGen/always_inline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/always_inline.c b/test/CodeGen/always_inline.c
index a74c212c0e..99a1649b58 100644
--- a/test/CodeGen/always_inline.c
+++ b/test/CodeGen/always_inline.c
@@ -1,5 +1,5 @@
-// RUN: %clang -emit-llvm -S -o - %s | FileCheck %s
-// RUN: %clang -mllvm -disable-llvm-optzns -emit-llvm -S -o - %s | FileCheck %s --check-prefix=CHECK-NO-OPTZNS
+// RUN: %clang -target x86_64-pc-linux-gnu -emit-llvm -S -o - %s | FileCheck %s
+// RUN: %clang -target x86_64-pc-linux-gnu -mllvm -disable-llvm-optzns -emit-llvm -S -o - %s | FileCheck %s --check-prefix=CHECK-NO-OPTZNS
//static int f0() {
static int __attribute__((always_inline)) f0() {