From dd9809dd723a9c124a7c2fdcc636ef776eda408c Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Thu, 7 Feb 2013 15:11:36 +0000 Subject: [PATCH] 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 --- clang/test/CodeGenCXX/builtins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.7.4