diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-07 15:11:36 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-07 15:11:36 +0000 |
commit | 55f05937a2946527c214259202cdc2f5b0cf125b (patch) | |
tree | ececd82850e08c75f30d7bb95d166c2ea5b86545 /test/CodeGenCXX/builtins.cpp | |
parent | cbe50ccea2ac4ea9e2f61d2ca003d66971e78f5f (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/builtins.cpp')
-rw-r--r-- | test/CodeGenCXX/builtins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/builtins.cpp b/test/CodeGenCXX/builtins.cpp index 0629c31015..c9b0bff0f2 100644 --- a/test/CodeGenCXX/builtins.cpp +++ b/test/CodeGenCXX/builtins.cpp @@ -4,6 +4,6 @@ extern "C" char memmove(); int main() { - // CHECK: call signext i8 @memmove() + // CHECK: call {{signext i8|i8}} @memmove() return memmove(); } |