You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
379 B
15 lines
379 B
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O3 -pg -S -o - %s | \
|
|
// RUN: FileCheck %s
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O3 -momit-leaf-frame-pointer -pg -S -o - %s | \
|
|
// RUN: FileCheck %s
|
|
|
|
// Test that the frame pointer is kept when compiling with
|
|
// profiling.
|
|
|
|
//CHECK: pushq %rbp
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|