Fix testcases to handle new syntax for construction and initializeation

Test constants


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@600 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2001-09-18 04:38:50 +00:00
parent 7f5ef148b0
commit ead19d51ba
2 changed files with 28 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
global %MyVar = int *
global %MyIntList = { \2 *, int } *
global int * ; int*:0
%MyVar = uninitialized global int
%MyIntList = uninitialized global { \2 *, int }
uninitialized global int ; int*:0
%AConst = constant int 123
implementation