diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-12-17 22:19:53 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-12-17 22:19:53 +0000 |
commit | 2e6119429fc521cddd7dde4f8f237ab0ec5ceb06 (patch) | |
tree | e7ef83296346a32fe84cd43fec6bf807e202144b /test/Linker | |
parent | 67005b311c357abb5dd9d8e66d6521c0c63afbb4 (diff) |
Revert 146728 as it's causing failures on some of the external bots as well as
internal nightly testers. Original commit message:
By popular demand, link up types by name if they are isomorphic and one is an
autorenamed version of the other. This makes the IR easier to read, because
we don't end up with random renamed versions of the types after LTO'ing a large
app.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker')
-rw-r--r-- | test/Linker/link-type-names.ll | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Linker/link-type-names.ll b/test/Linker/link-type-names.ll deleted file mode 100644 index b54c9db43d..0000000000 --- a/test/Linker/link-type-names.ll +++ /dev/null @@ -1,9 +0,0 @@ -; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll -; RUN: llvm-link %s %t.ll -S | FileCheck %s - -%X = type { i32 } -@G = global %X { i32 4 } - - -; CHECK: @G = global %X { i32 4 } -; CHECK: @G2 = global %X { i32 4 } |