diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-30 00:49:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-30 00:49:42 +0000 |
commit | 3f6496ab117ac2ac5596d6dfedf7cf4186978a72 (patch) | |
tree | b23ce0dbf27c89388a929c9aeed4b426461027b2 | |
parent | 9559ac287699fcfaca226531a0e9d371f8cf92e3 (diff) |
Oops, fix testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3139 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/FunctionResolve/retmismatch3.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/FunctionResolve/retmismatch3.ll b/test/Transforms/FunctionResolve/retmismatch3.ll index b20b17cf95..2f4afab7b0 100644 --- a/test/Transforms/FunctionResolve/retmismatch3.ll +++ b/test/Transforms/FunctionResolve/retmismatch3.ll @@ -2,7 +2,7 @@ declare int %read(...) -long %read(int %fildes, sbyte* %buf, ulong %nbyte) { +long %read() { ret long 0 } |