]> granicus.if.org Git - clang/commitdiff
[PM] Fix up from r290449 to start requiring the x86 target to be
authorChandler Carruth <chandlerc@gmail.com>
Fri, 23 Dec 2016 21:19:16 +0000 (21:19 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Fri, 23 Dec 2016 21:19:16 +0000 (21:19 +0000)
available.

It doesn't seem terribly important to test this with a specific target
triple but without that target available.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@290451 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/inline-optim.c

index 92669cc6e27da71421b778c278e8a5883ad2eabe..c6038de173f5f0d66f3b16c4c784780962eaa09d 100644 (file)
@@ -1,5 +1,7 @@
 // Make sure -finline-functions family flags are behaving correctly.
-
+//
+// REQUIRES: x86-registered-target
+//
 // RUN: %clang_cc1 -triple i686-pc-win32 -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
 // RUN: %clang_cc1 -triple i686-pc-win32 -fexperimental-new-pass-manager -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
 // RUN: %clang_cc1 -triple i686-pc-win32 -O3 -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s