From: Daniel Dunbar Date: Fri, 20 Nov 2009 02:52:08 +0000 (+0000) Subject: Fix -march= name for x86-64. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f6ed7824c55ef2f915eca3965b06cb67fd16335c;p=oota-llvm.git Fix -march= name for x86-64. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89445 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendC/cstring-align.c b/test/FrontendC/cstring-align.c index 80f97f8c9a1..2e3fc8b4e47 100644 --- a/test/FrontendC/cstring-align.c +++ b/test/FrontendC/cstring-align.c @@ -1,5 +1,5 @@ // RUN: %llvmgcc %s -c -Os -m32 -emit-llvm -o - | llc -march=x86 -mtriple=i386-apple-darwin10 | FileCheck %s -check-prefix=DARWIN32 -// RUN: %llvmgcc %s -c -Os -m64 -emit-llvm -o - | llc -march=x86_64 -mtriple=x86_64-apple-darwin10 | FileCheck %s -check-prefix=DARWIN64 +// RUN: %llvmgcc %s -c -Os -m64 -emit-llvm -o - | llc -march=x86-64 -mtriple=x86_64-apple-darwin10 | FileCheck %s -check-prefix=DARWIN64 extern void func(const char *, const char *);