Update to match typename produced by the C frontend

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6287 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-05-22 19:30:11 +00:00
parent c54e2b8f84
commit 977abcb790

View File

@ -4,23 +4,23 @@
target endian = little target endian = little
target pointersize = 32 target pointersize = 32
%struct.TorRec = type { int, void ()* } %struct..TorRec = type { int, void ()* }
%llvm.global_ctors = appending global [1 x %struct.TorRec] [ %llvm.global_ctors = appending global [1 x %struct..TorRec] [
%struct.TorRec { int 2147483647, void ()* null } %struct..TorRec { int 2147483647, void ()* null }
] ]
%llvm.global_dtors = appending global [1 x %struct.TorRec] [ %llvm.global_dtors = appending global [1 x %struct..TorRec] [
%struct.TorRec { int 2147483647, void ()* null } %struct..TorRec { int 2147483647, void ()* null }
] ]
implementation implementation
%struct.TorRec* %__llvm_getGlobalCtors() { %struct..TorRec* %__llvm_getGlobalCtors() {
ret %struct.TorRec* getelementptr ([1 x %struct.TorRec]* %llvm.global_ctors, ret %struct..TorRec* getelementptr ([1 x %struct..TorRec]* %llvm.global_ctors,
long 0, long 0) long 0, long 0)
} }
%struct.TorRec* %__llvm_getGlobalDtors() { %struct..TorRec* %__llvm_getGlobalDtors() {
ret %struct.TorRec* getelementptr ([1 x %struct.TorRec]* %llvm.global_dtors, ret %struct..TorRec* getelementptr ([1 x %struct..TorRec]* %llvm.global_dtors,
long 0, long 0) long 0, long 0)
} }