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.

llvm-svn: 174618

clang/test/CodeGenCXX/builtins.cpp

index 0629c31..c9b0bff 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();
 }