repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2007-01-02-UnboundedArray.cpp
blob
c76b7ef2163c9bac91667bbac95b964875e8dd0b
1
// Make sure unbounded arrays compile with debug information.
2
//
3
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -
4
5
// PR1068
6
7
struct
Object
{
8
char
buffer
[];
9
};
10
11
int
main
(
int
argc
,
char
**
argv
) {
12
new
Object
;
13
return
0
;
14
}