From 9160c024b99f66170113e0bbb2d0eb90faa88200 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 27 Jun 2015 03:46:58 +0000 Subject: [PATCH] llvm/test/CodeGen/X86/xor.ll: Appease Win32 targets since r240796. %struct.ref_s = type { %union.v, i16, i16 } %union.v = type { i64 } It seems %struct.ref_s is incompatible in tail padding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240874 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/xor.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/xor.ll b/test/CodeGen/X86/xor.ll index 0f6a601d954..f78fe275786 100644 --- a/test/CodeGen/X86/xor.ll +++ b/test/CodeGen/X86/xor.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s -check-prefix=X32 +; RUN: llc < %s -mtriple=i686-unknown -mattr=+sse2 | FileCheck %s -check-prefix=X32 ; RUN: llc < %s -mtriple=x86_64-linux -mattr=+sse2 | FileCheck %s -check-prefix=X64 ; RUN: llc < %s -mtriple=x86_64-win32 -mattr=+sse2 | FileCheck %s -check-prefix=X64 -- 2.34.1