[PM] Fix up from r290449 to start requiring the x86 target to be

available.

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

llvm-svn: 290451
This commit is contained in:
Chandler Carruth 2016-12-23 21:19:16 +00:00
parent 50f9e893f2
commit b322d1e6f0
1 changed files with 3 additions and 1 deletions

View 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