[llvm] r262760 - Add missing triple in my previous commit!
Quentin Colombet via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 4 15:36:33 PST 2016
Author: qcolombet
Date: Fri Mar 4 17:36:32 2016
New Revision: 262760
URL: http://llvm.org/viewvc/llvm-project?rev=262760&view=rev
Log:
Add missing triple in my previous commit!
Modified:
llvm/trunk/test/CodeGen/X86/base-pointer-and-cmpxchg.ll
Modified: llvm/trunk/test/CodeGen/X86/base-pointer-and-cmpxchg.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/base-pointer-and-cmpxchg.ll?rev=262760&r1=262759&r2=262760&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/base-pointer-and-cmpxchg.ll (original)
+++ llvm/trunk/test/CodeGen/X86/base-pointer-and-cmpxchg.ll Fri Mar 4 17:36:32 2016
@@ -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.
More information about the llvm-commits
mailing list