Go to file
David Blaikie a79ac14fa6 [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

llvm-svn: 230794
2015-02-27 21:17:42 +00:00
clang [modules] Avoid the possibility of a redeclaration chain not being marked 'up 2015-02-27 20:14:19 +00:00
clang-tools-extra Add 'let' to the help message. 2015-02-27 17:53:23 +00:00
compiler-rt [ASan/Win] Update test expectations after r230724 2015-02-27 14:29:53 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc libclc/math: Add cospi 2015-02-26 15:42:00 +00:00
libcxx Add self to CREDITS.txt 2015-02-26 00:48:22 +00:00
libcxxabi Add remote testing support to the lit config 2015-02-26 15:55:01 +00:00
lld PECOFF: Move a call of WinLinkDriver::parse from FileCOFF::doParse to FileCOFF::beforeLink 2015-02-27 20:39:20 +00:00
lldb Fix FileSpec::GetPath to return null-terminated strings 2015-02-27 19:43:08 +00:00
llgo Build cgo and llgo-go 2015-02-14 01:46:01 +00:00
llvm [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
openmp Removed all header files for OpenMP 2.5 2015-02-25 18:38:08 +00:00
polly Update one test I missed when updating for the opaque pointer gep changes to LLVM. 2015-02-27 20:43:19 +00:00