mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Changed generic modules to internal templates.
This commit is contained in:
committed by
Christoffer Lerno
parent
b99f8d644b
commit
892c7e8874
@@ -23,12 +23,12 @@ func int extract_or_test_files()
|
||||
|
||||
// #expect: test.ll
|
||||
|
||||
%test.UzGlobs = type { i8, [1 x %test.MinInfo], %test.MinInfo* }
|
||||
%test.MinInfo = type { i64, i32 }
|
||||
%UzGlobs = type { i8, [1 x %MinInfo], %MinInfo* }
|
||||
%MinInfo = type { i64, i32 }
|
||||
|
||||
@g = external global %test.UzGlobs, align 8
|
||||
@g = external global %UzGlobs, align 8
|
||||
|
||||
entry:
|
||||
store %test.MinInfo* getelementptr inbounds (%test.UzGlobs, %test.UzGlobs* @g, i32 0, i32 1, i32 0), %test.MinInfo** getelementptr inbounds (%test.UzGlobs, %test.UzGlobs* @g, i32 0, i32 2), align 8
|
||||
store %MinInfo* getelementptr inbounds (%UzGlobs, %UzGlobs* @g, i32 0, i32 1, i32 0), %MinInfo** getelementptr inbounds (%UzGlobs, %UzGlobs* @g, i32 0, i32 2), align 8
|
||||
ret i32 0
|
||||
}
|
||||
Reference in New Issue
Block a user