From: Quentin Colombet Date: Fri, 4 Mar 2016 23:36:32 +0000 (+0000) Subject: Add missing triple in my previous commit! X-Git-Tag: llvmorg-3.9.0-rc1~12428 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb5be7a37fcd0963638a01a6ab8515f929cda0fa;p=platform%2Fupstream%2Fllvm.git Add missing triple in my previous commit! llvm-svn: 262760 --- diff --git a/llvm/test/CodeGen/X86/base-pointer-and-cmpxchg.ll b/llvm/test/CodeGen/X86/base-pointer-and-cmpxchg.ll index c3e2b52..98ca96f 100644 --- a/llvm/test/CodeGen/X86/base-pointer-and-cmpxchg.ll +++ b/llvm/test/CodeGen/X86/base-pointer-and-cmpxchg.ll @@ -1,5 +1,6 @@ ; RUN: llc -mattr=+cx16 -x86-use-base-pointer=true -stackrealign -stack-alignment=32 %s -o - | FileCheck --check-prefix=CHECK --check-prefix=USE_BASE %s ; RUN: llc -mattr=+cx16 -x86-use-base-pointer=false -stackrealign -stack-alignment=32 %s -o - | FileCheck --check-prefix=CHECK --check-prefix=DONT_USE_BASE %s +target triple = "x86_64-apple-macosx" ; This function uses dynamic allocated stack to force the use ; of a frame pointer.