blob: bccacc9916f11089b0c853e5578e6d05912cac9b [file] [log] [blame]
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001// RUN: %clang_cc1 -g -emit-llvm -o %t %s
2// RUN: grep 'naked' %t
3
4void t1() __attribute__((naked));
5
6void t1()
7{
8}
9