r197522 - Use triples that match the -target-abi option.
Rafael Espindola
rafael.espindola at gmail.com
Tue Dec 17 13:01:22 PST 2013
Author: rafael
Date: Tue Dec 17 15:01:22 2013
New Revision: 197522
URL: http://llvm.org/viewvc/llvm-project?rev=197522&view=rev
Log:
Use triples that match the -target-abi option.
Modified:
cfe/trunk/test/CodeGen/target-data.c
Modified: cfe/trunk/test/CodeGen/target-data.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/target-data.c?rev=197522&r1=197521&r2=197522&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/target-data.c (original)
+++ cfe/trunk/test/CodeGen/target-data.c Tue Dec 17 15:01:22 2013
@@ -108,11 +108,11 @@
// RUN: FileCheck %s -check-prefix=AARCH64
// AARCH64: target datalayout = "e-i64:64-i128:128-n32:64-S128"
-// RUN: %clang_cc1 -triple thumb-unknown -o - -emit-llvm %s | \
+// RUN: %clang_cc1 -triple thumb-unknown-gnueabi -o - -emit-llvm %s | \
// RUN: FileCheck %s -check-prefix=THUMB
// THUMB: target datalayout = "e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:64-v128:64:128-a:0:32-n32-S64"
-// RUN: %clang_cc1 -triple arm-unknown -o - -emit-llvm %s | \
+// RUN: %clang_cc1 -triple arm-unknown-gnueabi -o - -emit-llvm %s | \
// RUN: FileCheck %s -check-prefix=ARM
// ARM: target datalayout = "e-p:32:32-i64:64-v128:64:128-n32-S64"
More information about the cfe-commits
mailing list