[llvm-commits] [llvm] r113484 - /llvm/trunk/test/FrontendC/cstring-align.c
Duncan Sands
baldrick at free.fr
Thu Sep 9 05:48:04 PDT 2010
Author: baldrick
Date: Thu Sep 9 07:48:04 2010
New Revision: 113484
URL: http://llvm.org/viewvc/llvm-project?rev=113484&view=rev
Log:
Another test that uses -m64. Here too it looks like it can be
removed. Not that the XTARGET wasn't doing anything since it
does nothing without an accompanying XFAIL.
Modified:
llvm/trunk/test/FrontendC/cstring-align.c
Modified: llvm/trunk/test/FrontendC/cstring-align.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/cstring-align.c?rev=113484&r1=113483&r2=113484&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC/cstring-align.c (original)
+++ llvm/trunk/test/FrontendC/cstring-align.c Thu Sep 9 07:48:04 2010
@@ -1,6 +1,4 @@
-// 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
-// XTARGET: darwin
+// RUN: %llvmgcc %s -c -Os -emit-llvm -o - | llc -march=x86 -mtriple=i386-apple-darwin10 | FileCheck %s
extern void func(const char *, const char *);
@@ -8,10 +6,6 @@
func("%s: the function name", __func__);
}
-// DARWIN64: .align 4
-// DARWIN64: ___func__.
-// DARWIN64: .asciz "long_function_name"
-
-// DARWIN32: .align 4
-// DARWIN32: ___func__.
-// DARWIN32: .asciz "long_function_name"
+// CHECK: .align 4
+// CHECK: ___func__.
+// CHECK: .asciz "long_function_name"
More information about the llvm-commits
mailing list