diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2019-01-04 20:51:54 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2019-01-04 20:51:54 +0000 |
commit | f90e1507d5585c7e291471a1e89f34968d91eb9b (patch) | |
tree | 4699e8d84ed31e5ae35b9af96ab2c72ab4862d46 /clang/test/CodeGen/default-function-attr.c | |
parent | cfeb1cf9af3a96fee9dd2fd733d05b1f68884e1f (diff) | |
download | bcm5719-llvm-f90e1507d5585c7e291471a1e89f34968d91eb9b.tar.gz bcm5719-llvm-f90e1507d5585c7e291471a1e89f34968d91eb9b.zip |
Fix default-function-attr.c so that it works on Windows.
llvm-svn: 350433
Diffstat (limited to 'clang/test/CodeGen/default-function-attr.c')
-rw-r--r-- | clang/test/CodeGen/default-function-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/default-function-attr.c b/clang/test/CodeGen/default-function-attr.c index b0d1398a157..1c186e8e55b 100644 --- a/clang/test/CodeGen/default-function-attr.c +++ b/clang/test/CodeGen/default-function-attr.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -default-function-attr foo=bar -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -triple x86_64-unknown-linux -default-function-attr foo=bar -emit-llvm %s -o - | FileCheck %s // CHECK: define void @foo() #[[X:[0-9]+]] void foo() {} |