]> granicus.if.org Git - clang/commitdiff
Permit ABIs where the caller extends the result (test change).
authorTim Northover <Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:36 +0000 (15:11 +0000)
committerTim Northover <Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:36 +0000 (15:11 +0000)
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

test/CodeGenCXX/builtins.cpp

index 0629c31015c76b8c63b722286c33fb261e6c03a8..c9b0bff0f2e21dd08b947e05fc7a6ccede77970f 100644 (file)
@@ -4,6 +4,6 @@
 extern "C" char memmove();
 
 int main() {
-  // CHECK: call signext i8 @memmove()
+  // CHECK: call {{signext i8|i8}} @memmove()
   return memmove();
 }