David Blaikie 7c9c6ed761 [opaque pointer type] Add textual IR support for explicit type parameter to load instruction
Essentially the same as the GEP change in r230786.

A similar migration script can be used to update test cases, though a few more
test case improvements/changes were required this time around: (r229269-r229278)

import fileinput
import sys
import re

pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)")

for line in sys.stdin:
  sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line))

Reviewers: rafael, dexonsmith, grosser

Differential Revision: http://reviews.llvm.org/D7649

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-27 21:17:42 +00:00
..
2014-10-16 20:00:02 +00:00
2014-12-15 22:34:58 +00:00
2014-01-16 06:31:20 +00:00
2014-04-19 13:47:43 +00:00
2014-05-05 16:47:07 +00:00
2014-10-21 23:01:01 +00:00
2014-10-21 23:01:01 +00:00
2015-01-08 07:57:27 +00:00
2014-05-06 01:20:42 +00:00
2013-11-14 06:05:49 +00:00
2014-03-21 00:30:24 +00:00
2014-02-25 20:01:08 +00:00
2013-12-03 09:17:32 +00:00
2013-11-02 00:10:02 +00:00
2013-11-22 17:56:57 +00:00
2013-11-26 20:31:31 +00:00
2014-11-11 20:49:16 +00:00
2014-12-03 02:08:38 +00:00
2014-12-03 02:08:38 +00:00
2013-10-31 17:50:45 +00:00
2015-02-05 23:52:12 +00:00
2015-01-26 21:28:32 +00:00
2013-11-17 10:53:19 +00:00
2015-01-26 21:28:32 +00:00
2015-02-11 15:00:41 +00:00
2015-02-11 15:00:19 +00:00
2014-01-11 21:06:00 +00:00
2015-02-11 14:58:25 +00:00
2014-06-07 21:23:09 +00:00