r208217 - Re-satisfy the bots. Due to a de-sync between my clang and LLVM trees, I didn't notice that the generated BE alignment register is now unnamed and is not called '%align_be'.

James Molloy james.molloy at arm.com
Wed May 7 07:51:57 PDT 2014


Author: jamesm
Date: Wed May  7 09:51:57 2014
New Revision: 208217

URL: http://llvm.org/viewvc/llvm-project?rev=208217&view=rev
Log:
Re-satisfy the bots. Due to a de-sync between my clang and LLVM trees, I didn't notice that the generated BE alignment register is now unnamed and is not called '%align_be'.

Modified:
    cfe/trunk/test/CodeGen/arm64-be-hfa-vararg.c

Modified: cfe/trunk/test/CodeGen/arm64-be-hfa-vararg.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/arm64-be-hfa-vararg.c?rev=208217&r1=208216&r2=208217&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/arm64-be-hfa-vararg.c (original)
+++ cfe/trunk/test/CodeGen/arm64-be-hfa-vararg.c Wed May  7 09:51:57 2014
@@ -4,7 +4,7 @@
 
 // A single member HFA must be aligned just like a non-HFA register argument.
 double callee(int a, ...) {
-// CHECK: %align_be = add i64 %{{.*}}, 8
+// CHECK: = add i64 %{{.*}}, 8
   va_list vl;
   va_start(vl, a);
   double result = va_arg(vl, struct { double a; }).a;





More information about the cfe-commits mailing list