1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Update to match typename produced by the C frontend

llvm-svn: 6287
This commit is contained in:
Chris Lattner 2003-05-22 19:30:11 +00:00
parent 91c5d68261
commit eec3d84e72

View File

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