r174618 - Permit ABIs where the caller extends the result (test change).

Tim Northover Tim.Northover at arm.com
Thu Feb 7 07:11:36 PST 2013


Author: tnorthover
Date: Thu Feb  7 09:11:36 2013
New Revision: 174618

URL: http://llvm.org/viewvc/llvm-project?rev=174618&view=rev
Log:
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.

Modified:
    cfe/trunk/test/CodeGenCXX/builtins.cpp

Modified: cfe/trunk/test/CodeGenCXX/builtins.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/builtins.cpp?rev=174618&r1=174617&r2=174618&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/builtins.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/builtins.cpp Thu Feb  7 09:11:36 2013
@@ -4,6 +4,6 @@
 extern "C" char memmove();
 
 int main() {
-  // CHECK: call signext i8 @memmove()
+  // CHECK: call {{signext i8|i8}} @memmove()
   return memmove();
 }





More information about the cfe-commits mailing list