Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d901b6640e0f1d1757a2db9fb57a140ad828ea75
/
.
/
test
/
FrontendC
/
2008-04-08-NoExceptions.c
blob: 257fee23b068e15188a30aad124a01a83817638b [
file
] [
log
] [
blame
]
Duncan Sands
486af90
2008-04-08 19:31:52 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -S -o - %s | grep nounwind | count 2
2
// RUN: %llvmgcc -S -o - %s | not grep {declare.*nounwind}
3
4
void
f
(
void
);
5
void
g
(
void
)
{
6
f
();
7
}