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'.

llvm-svn: 208217
This commit is contained in:
James Molloy 2014-05-07 14:51:57 +00:00
parent 467be60748
commit 847501f92e
1 changed files with 1 additions and 1 deletions

View File

@ -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;