From 49f20c45ffb5aa459d2723961f2268875d39265c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 Dec 2002 16:32:21 +0000 Subject: [PATCH] Allow folding together two globals through type resolution git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5038 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Assembler/2002-12-15-GlobalResolve.ll | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/Assembler/2002-12-15-GlobalResolve.ll diff --git a/test/Assembler/2002-12-15-GlobalResolve.ll b/test/Assembler/2002-12-15-GlobalResolve.ll new file mode 100644 index 00000000000..b46d0cc5f3f --- /dev/null +++ b/test/Assembler/2002-12-15-GlobalResolve.ll @@ -0,0 +1,10 @@ + + +%X = external global %T* +%X = external global int * + +%T = type int + + +implementation + -- 2.34.1