mirror of https://github.com/microsoft/clang.git
Shuffle tests around to more appropriate files
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50d3f296d0
commit
e43dd25145
|
@ -26,5 +26,10 @@
|
|||
// RUN: FileCheck --check-prefix=OMIT_LEAF %s
|
||||
// OMIT_LEAF: "-momit-leaf-frame-pointer"
|
||||
|
||||
// On the PS4, we default to omitting the frame pointer on lead functions
|
||||
// (OMIT_LEAF check line is above)
|
||||
// RUN: %clang -### -target x86_64-scei-ps4 -S %s 2>&1 | \
|
||||
// RUN: FileCheck --check-prefix=OMIT_LEAF %s
|
||||
|
||||
void f0() {}
|
||||
void f1() { f0(); }
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// Check that on the PS4 we default to:
|
||||
// -target-cpu btver2, -momit-leaf-frame-pointer, and no exceptions
|
||||
// -target-cpu btver2 and no exceptions
|
||||
|
||||
// RUN: %clang -target x86_64-scei-ps4 -c %s -### 2>&1 | FileCheck %s
|
||||
// CHECK: "-target-cpu" "btver2"
|
||||
// CHECK: -momit-leaf-frame-pointer
|
||||
// CHECK-NOT: exceptions
|
||||
|
|
Loading…
Reference in New Issue