Add testcases for internal
authorChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 19:17:06 +0000 (19:17 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 19:17:06 +0000 (19:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1388 91177308-0d34-0410-b5e6-96231b3b80d8

test/Linker/testlink1.ll
test/Linker/testlink2.ll

index 7ec511c15a0bbc77c2cddab3ac7d43974735251d..cf757f100e53c17f1815bdd7eef28a85023c54b2 100644 (file)
@@ -5,6 +5,9 @@
 
 %AConst    = constant int 123
 
+%Intern1   = internal constant int 42
+%Intern2   = internal constant int 792
+
 ; Initialized to point to external %MyVar
 %MyVarPtr  = global { int * }  { int * %MyVar }
 
@@ -33,3 +36,7 @@ begin
        ret void
 end
 
+internal void "testintern"() begin ret void end
+internal void "Testintern"() begin ret void end
+         void "testIntern"() begin ret void end
+
index 77d62f228b43e753465eb86878907cd6ab5244e2..056daaff09e531a53e168924db05a76ffa032360 100644 (file)
@@ -4,6 +4,9 @@
 
 %AConst    = constant int 123
 
+%Intern1   = internal constant int 52 ;; Intern in both testlink[12].ll
+%Intern2   = constant int 12345       ;; Intern in one but not in other
+
 %MyIntListPtr = constant { {\2,int}* } { {\2,int}* %MyIntList }
 %MyVarPtr  = global { int * }  { int * %MyVar }
 
@@ -22,3 +25,8 @@ begin
 end
 
 declare void "unimp"(float, double)
+
+internal void "testintern"() begin ret void end
+         void "Testintern"() begin ret void end
+internal void "testIntern"() begin ret void end
+