diff options
author | Fangrui Song <maskray@google.com> | 2019-05-30 06:48:13 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-05-30 06:48:13 +0000 |
commit | 54d3c3d43651756bf37d5a1c73c85d889b739c1a (patch) | |
tree | 1336f0632224abd15117262be22e344be8ace671 | |
parent | 0528726a69c2f9245645c9efcec2294d2d99b908 (diff) | |
download | bcm5719-llvm-54d3c3d43651756bf37d5a1c73c85d889b739c1a.tar.gz bcm5719-llvm-54d3c3d43651756bf37d5a1c73c85d889b739c1a.zip |
Mark CodeGen/asm-goto.c as x86 specific after r362045
llvm-svn: 362059
-rw-r--r-- | clang/test/CodeGen/asm-goto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGen/asm-goto.c b/clang/test/CodeGen/asm-goto.c index 2c4a1a0c4df..99e97f2a41e 100644 --- a/clang/test/CodeGen/asm-goto.c +++ b/clang/test/CodeGen/asm-goto.c @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 -O0 -emit-llvm %s -o - | FileCheck %s +// REQUIRES: x86-registered-target +// RUN: %clang_cc1 -triple x86_64 -O0 -emit-llvm %s -o - | FileCheck %s int foo(int cond) { |