[PATCH] D12346: x32. Fixes a bug in how struct va_list is initialized in x32
Derek Schuff via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 8 13:38:04 PDT 2015
dschuff added a comment.
otherwise LGTM
================
Comment at: test/CodeGen/X86/x32-va_start.ll:1
@@ +1,2 @@
+; RUN: llc < %s -mtriple=x86_64-linux-gnux32 | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-SSE
+; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -mattr=-sse | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-NOSSE
----------------
more common style is to remove the CHECK- from the SSE check prefixes, i.e.:
-check-prefix=CHECK -check-prefix=NOSSE
http://reviews.llvm.org/D12346
More information about the llvm-commits
mailing list