From 5b0e7886f3554e8dfa746762c3d212c08a552470 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 16 Feb 2012 22:42:48 +0000 Subject: [PATCH] =?UTF-8?q?Use=20=E2=80=93mcpu=3Dgeneric,=20so=20that=20th?= =?UTF-8?q?e=20test=20will=20not=20fail=20when=20run=20on=20an=20Intel=20A?= =?UTF-8?q?tom=20processor,=20due=20to=20the=20Atom=20scheduler=20producin?= =?UTF-8?q?g=20an=20instruction=20sequence=20that=20is=20different=20from?= =?UTF-8?q?=20that=20which=20is=20expected.=20Patch=20by=20Michael=20Spenc?= =?UTF-8?q?er!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150736 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/uint64-to-float.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/uint64-to-float.ll b/test/CodeGen/X86/uint64-to-float.ll index d9f753c7a88..e853e7717f1 100644 --- a/test/CodeGen/X86/uint64-to-float.ll +++ b/test/CodeGen/X86/uint64-to-float.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86-64 | FileCheck %s +; RUN: llc < %s -mcpu=generic -march=x86-64 | FileCheck %s ; Verify that we are using the efficient uitofp --> sitofp lowering illustrated ; by the compiler_rt implementation of __floatundisf. ;