blob: f553b136ebbad8a00b6df2acc9d679354cfcf251 [file] [log] [blame]
Benjamin Krameree409a92012-05-12 21:10:52 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3int test1() __attribute__((__cold__)) {
4 return 42;
5
6// Check that we set the optsize attribute on the function.
Bill Wendlingf7a9da02013-02-20 07:22:19 +00007// CHECK: @test1{{.*}}#0
Benjamin Krameree409a92012-05-12 21:10:52 +00008// CHECK: ret
9}
Bill Wendlingf7a9da02013-02-20 07:22:19 +000010
11// CHECK: attributes #0 = { nounwind optsize "target-features"={{.*}} }