Add a testcase for the mcount profiling.

llvm-svn: 125283
This commit is contained in:
Roman Divacky 2011-02-10 16:52:35 +00:00
parent 178e0160b7
commit 5bc5151299
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
// RUN: %clang_cc1 -pg -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s
void foo(void) {
// CHECK: call void @mcount()
}