repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git]
/
test
/
FrontendC++
/
2007-01-02-UnboundedArray.cpp
blob
310308694b78b5176397e931920236f42ac55380
1
// Make sure unbounded arrays compile with debug information.
2
//
3
// RUN: %llvmgcc -O0 -S -g %s
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
}