Merging r168197: into 3.2 release branch
authorPawel Wodnicki <pawel@32bitmicro.com>
Wed, 21 Nov 2012 16:40:23 +0000 (16:40 +0000)
committerPawel Wodnicki <pawel@32bitmicro.com>
Wed, 21 Nov 2012 16:40:23 +0000 (16:40 +0000)
commit00dace859e62c85379021f727c9aeade734f5154
tree5b68624e81c63404b619b1fd19c7a3a635c5f327
parent50a66acf1b7920e26618939882701be0e0574ca2
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
lib/AsmParser/LLParser.cpp
test/Assembler/global-addrspace-forwardref.ll [new file with mode: 0644]