Permit ABIs where the caller extends the result (test change).

This test was written to make sure *something* sane is generated, not
to test any ABI's signedness semantics.

This should allow the test to pass if AArch64 is the default target.

llvm-svn: 174618
This commit is contained in:
Tim Northover 2013-02-07 15:11:36 +00:00
parent 39675fe9c8
commit dd9809dd72
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
extern "C" char memmove();
int main() {
// CHECK: call signext i8 @memmove()
// CHECK: call {{signext i8|i8}} @memmove()
return memmove();
}