diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-01-22 01:19:19 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-01-22 01:19:19 +0000 |
commit | 395dad8213d8cf966dc1d66d733cbf7186ddd60e (patch) | |
tree | f65a81d611369502a45b68033e8e2ffdb6b79eca | |
parent | 855cbfddbe16cee2709390210483d6b07f658c06 (diff) | |
download | bcm5719-llvm-395dad8213d8cf966dc1d66d733cbf7186ddd60e.tar.gz bcm5719-llvm-395dad8213d8cf966dc1d66d733cbf7186ddd60e.zip |
Give the block inlining test a triple to determinise output
It fails on Windows due to another temporary being emitted first, so the
LLVM internal renaming scheme gives out the name
__block_descriptor_tmp1.
llvm-svn: 226757
-rw-r--r-- | clang/test/CodeGen/2009-01-05-BlockInlining.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/2009-01-05-BlockInlining.c b/clang/test/CodeGen/2009-01-05-BlockInlining.c index 9153771f3a4..61e5244bb68 100644 --- a/clang/test/CodeGen/2009-01-05-BlockInlining.c +++ b/clang/test/CodeGen/2009-01-05-BlockInlining.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -emit-llvm -fblocks -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple x86_64-linux -emit-llvm -fblocks -o - | FileCheck %s // rdar://5865221 // These will be inlined by the optimizers provided the block descriptors |