[llvm-commits] [llvm] r138859 - /llvm/trunk/test/CodeGen/X86/tail-call-got.ll

Benjamin Kramer benny.kra at googlemail.com
Wed Aug 31 09:49:06 PDT 2011


Author: d0k
Date: Wed Aug 31 11:49:05 2011
New Revision: 138859

URL: http://llvm.org/viewvc/llvm-project?rev=138859&view=rev
Log:
This test requires sse, otherwise x87 ops will block tailcall optimization

Modified:
    llvm/trunk/test/CodeGen/X86/tail-call-got.ll

Modified: llvm/trunk/test/CodeGen/X86/tail-call-got.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/tail-call-got.ll?rev=138859&r1=138858&r2=138859&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/tail-call-got.ll (original)
+++ llvm/trunk/test/CodeGen/X86/tail-call-got.ll Wed Aug 31 11:49:05 2011
@@ -1,4 +1,4 @@
-; RUN: llc < %s -relocation-model=pic | FileCheck %s
+; RUN: llc < %s -relocation-model=pic -mattr=+sse2 | FileCheck %s
 
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
 target triple = "i386-unknown-freebsd9.0"





More information about the llvm-commits mailing list