Testcase for debug info emission for structure fields at variable offsets.

llvm-svn: 36147
This commit is contained in:
Duncan Sands 2007-04-16 18:49:21 +00:00
parent fb80151c42
commit d16d149262
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- RUN: %llvmgcc -c -g %s -o /dev/null
package Debug_Var_Size is
subtype Length_Type is Positive range 1 .. 64;
type T (Length : Length_Type := 1) is record
Varying_Length : String (1 .. Length);
Fixed_Length : Boolean;
end record;
end;