[llvm] r201335 - Specify a triple. MachO AArch64 support is missing.
Rafael Espindola
rafael.espindola at gmail.com
Thu Feb 13 07:30:07 PST 2014
Author: rafael
Date: Thu Feb 13 09:30:06 2014
New Revision: 201335
URL: http://llvm.org/viewvc/llvm-project?rev=201335&view=rev
Log:
Specify a triple. MachO AArch64 support is missing.
Modified:
llvm/trunk/test/CodeGen/AArch64/mature-mc-support.ll
Modified: llvm/trunk/test/CodeGen/AArch64/mature-mc-support.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/mature-mc-support.ll?rev=201335&r1=201334&r2=201335&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/mature-mc-support.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/mature-mc-support.ll Thu Feb 13 09:30:06 2014
@@ -1,10 +1,10 @@
; Test that inline assembly is parsed by the MC layer when MC support is mature
; (even when the output is assembly).
-; RUN: not llc -march=aarch64 < %s > /dev/null 2> %t1
+; RUN: not llc -mtriple=aarch64-pc-linux < %s > /dev/null 2> %t1
; RUN: FileCheck %s < %t1
-; RUN: not llc -march=aarch64 -filetype=obj < %s > /dev/null 2> %t2
+; RUN: not llc -mtriple=aarch64-pc-linux -filetype=obj < %s > /dev/null 2> %t2
; RUN: FileCheck %s < %t2
module asm " .this_directive_is_very_unlikely_to_exist"
More information about the llvm-commits
mailing list