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 | dd9809dd723a9c124a7c2fdcc636ef776eda408c (patch) | |
tree | 6697e48c655d376639752a5edbac5ebbdb65fbcb | |
parent | 39675fe9c81d8e478a8b7b1dd69135a7e93c0acc (diff) | |
download | llvm-dd9809dd723a9c124a7c2fdcc636ef776eda408c.zip llvm-dd9809dd723a9c124a7c2fdcc636ef776eda408c.tar.gz llvm-dd9809dd723a9c124a7c2fdcc636ef776eda408c.tar.bz2 |
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
-rw-r--r-- | clang/test/CodeGenCXX/builtins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/builtins.cpp b/clang/test/CodeGenCXX/builtins.cpp index 0629c31..c9b0bff 100644 --- a/clang/test/CodeGenCXX/builtins.cpp +++ b/clang/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(); } |