summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPawel Wodnicki <pawel@32bitmicro.com>2012-11-21 16:40:23 +0000
committerPawel Wodnicki <pawel@32bitmicro.com>2012-11-21 16:40:23 +0000
commit00dace859e62c85379021f727c9aeade734f5154 (patch)
tree5b68624e81c63404b619b1fd19c7a3a635c5f327 /test
parent50a66acf1b7920e26618939882701be0e0574ca2 (diff)
downloadllvm-00dace859e62c85379021f727c9aeade734f5154.tar.gz
llvm-00dace859e62c85379021f727c9aeade734f5154.tar.bz2
llvm-00dace859e62c85379021f727c9aeade734f5154.tar.xz
Merging r168197: into 3.2 release branch
Preserve address space of forward-referenced global variables in the LL parser Before, the parser would assert on the following code: @a2 = global i8 addrspace(1)* @a @a = addrspace(1) global i8 0 because the type of @a was "i8*" instead of "i8 addrspace(1)*" when parsing the initializer for @a2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_32@168435 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Assembler/global-addrspace-forwardref.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Assembler/global-addrspace-forwardref.ll b/test/Assembler/global-addrspace-forwardref.ll
new file mode 100644
index 0000000000..f0f094a224
--- /dev/null
+++ b/test/Assembler/global-addrspace-forwardref.ll
@@ -0,0 +1,8 @@
+; RUN: llvm-as < %s | llvm-dis | FileCheck %s
+
+; Make sure the address space of forward decls is preserved
+
+; CHECK: @a2 = global i8 addrspace(1)* @a
+; CHECK: @a = addrspace(1) global i8 0
+@a2 = global i8 addrspace(1)* @a
+@a = addrspace(1) global i8 0