r362059 - Mark CodeGen/asm-goto.c as x86 specific after r362045
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Wed May 29 23:48:13 PDT 2019
Author: maskray
Date: Wed May 29 23:48:13 2019
New Revision: 362059
URL: http://llvm.org/viewvc/llvm-project?rev=362059&view=rev
Log:
Mark CodeGen/asm-goto.c as x86 specific after r362045
Modified:
cfe/trunk/test/CodeGen/asm-goto.c
Modified: cfe/trunk/test/CodeGen/asm-goto.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/asm-goto.c?rev=362059&r1=362058&r2=362059&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/asm-goto.c (original)
+++ cfe/trunk/test/CodeGen/asm-goto.c Wed May 29 23:48:13 2019
@@ -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)
{
More information about the cfe-commits
mailing list