diff options
author | Devang Patel <dpatel@apple.com> | 2008-02-20 22:51:28 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-02-20 22:51:28 +0000 |
commit | 2102cab02f65fa89e18aa0a2ba98f53ecc322f03 (patch) | |
tree | 25036deeed62560e1a08bf5a71e00a1114a6c65c /test/Assembler | |
parent | 7990dc76339823957b9d3ff72f817db39bd6813b (diff) | |
download | external_llvm-2102cab02f65fa89e18aa0a2ba98f53ecc322f03.zip external_llvm-2102cab02f65fa89e18aa0a2ba98f53ecc322f03.tar.gz external_llvm-2102cab02f65fa89e18aa0a2ba98f53ecc322f03.tar.bz2 |
Now functions can return aggregate values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler')
-rw-r--r-- | test/Assembler/2005-01-31-CallingAggregateFunction.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/test/Assembler/2005-01-31-CallingAggregateFunction.ll index 9fb8054..997bbfa 100644 --- a/test/Assembler/2005-01-31-CallingAggregateFunction.ll +++ b/test/Assembler/2005-01-31-CallingAggregateFunction.ll @@ -1,5 +1,4 @@ -; RUN: not llvm-as < %s -o /dev/null -f |& \ -; RUN: grep {LLVM functions cannot return aggregate types} +; RUN: not llvm-as < %s -o /dev/null -f define void @test() { call {} @foo() |