diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-02 21:56:26 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-02 21:56:26 +0000 |
| commit | ab2fccd9eb821b2e6c62b9d51fd9c1b89f6501ad (patch) | |
| tree | 77d27234f9fe342e08064b30a5bd4bc51226303e /llvm | |
| parent | 87622ae03df0ca70006ba383c29a407e203d24e2 (diff) | |
| download | bcm5719-llvm-ab2fccd9eb821b2e6c62b9d51fd9c1b89f6501ad.tar.gz bcm5719-llvm-ab2fccd9eb821b2e6c62b9d51fd9c1b89f6501ad.zip | |
This test case previously passed the assembler without error even though
it used an undefined type name as a parameter argument. This bug in the
assembler has been fixed and it is now necessary to define the type.
llvm-svn: 32826
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll b/llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll index 1761d5d0e75..59c65053e52 100644 --- a/llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll +++ b/llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll @@ -1,6 +1,8 @@ ; There should be exactly two calls here (memset and malloc), no more. ; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep jsr | wc -l | grep 2 +%typedef.bc_struct = type opaque + implementation ; Functions: declare void %llvm.memset.i64(sbyte*, ubyte, ulong, uint) |

