aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/emit-all-decls.c
blob: 3e7927d8ef7928a8c883b12221a5066d1d27d5a0 (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -emit-llvm -o %t %s
// RUN: not grep "@foo" %t
// RUN: clang-cc -femit-all-decls -emit-llvm -o %t %s
// RUN: grep "@foo" %t

static void foo() {
  
}