diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-03-01 07:38:40 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-03-01 07:38:40 +0000 |
commit | fc887458eba5b0e2c9153e007ef97332913c9747 (patch) | |
tree | e3b7a85489213ca435df8fdecb7a12601e2f00ac /test/Feature/opaquetypes.ll | |
parent | d39091a9e2d52ca3acdebf27a887545b19317d07 (diff) | |
download | external_llvm-fc887458eba5b0e2c9153e007ef97332913c9747.zip external_llvm-fc887458eba5b0e2c9153e007ef97332913c9747.tar.gz external_llvm-fc887458eba5b0e2c9153e007ef97332913c9747.tar.bz2 |
Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/opaquetypes.ll')
-rw-r--r-- | test/Feature/opaquetypes.ll | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/test/Feature/opaquetypes.ll b/test/Feature/opaquetypes.ll index 92efaeb..2ca58a7 100644 --- a/test/Feature/opaquetypes.ll +++ b/test/Feature/opaquetypes.ll @@ -1,4 +1,4 @@ -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll +; RUN: llvm-as < %s | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll @@ -6,10 +6,10 @@ ; and recursive types. Oh my. ; -%SQ1 = type { int } +%SQ1 = type { i32 } %ITy = type opaque %SQ2 = type { %ITy } -%ITy = type int +%ITy = type i32 %CCC = type { \2* } @@ -23,10 +23,10 @@ type %BBB ; Test simple opaque type resolution... %intty = type opaque -%intty = type int +%intty = type i32 ; Perform a simple forward reference... -%ty1 = type { %ty2, int } +%ty1 = type { %ty2, i32 } %ty2 = type float ; Do a recursive type... @@ -55,7 +55,3 @@ type %BBB %Y1 = type { { \3 * }, \2 * } %Z1 = type { { \3 * }, [12x\3] *, { { { \5 * } } } } -implementation - - - |