r201238 - Arcanist failed to commit the two clang test corrections that should have been in r201237.

Daniel Sanders daniel.sanders at imgtec.com
Wed Feb 12 06:46:15 PST 2014


Author: dsanders
Date: Wed Feb 12 08:46:15 2014
New Revision: 201238

URL: http://llvm.org/viewvc/llvm-project?rev=201238&view=rev
Log:
Arcanist failed to commit the two clang test corrections that should have been in r201237.

Modified:
    cfe/trunk/test/CodeGen/2010-06-17-asmcrash.c
    cfe/trunk/test/Frontend/backend-diagnostic.c

Modified: cfe/trunk/test/CodeGen/2010-06-17-asmcrash.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2010-06-17-asmcrash.c?rev=201238&r1=201237&r2=201238&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2010-06-17-asmcrash.c (original)
+++ cfe/trunk/test/CodeGen/2010-06-17-asmcrash.c Wed Feb 12 08:46:15 2014
@@ -1,5 +1,6 @@
 // REQUIRES: x86-registered-target
-// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O1 -S -o - %s | FileCheck %s
+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O1 -mllvm -no-integrated-as \
+// RUN:     -S -o - %s | FileCheck %s
 
 typedef long long int64_t;
 typedef unsigned char uint8_t;

Modified: cfe/trunk/test/Frontend/backend-diagnostic.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/backend-diagnostic.c?rev=201238&r1=201237&r2=201238&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/backend-diagnostic.c (original)
+++ cfe/trunk/test/Frontend/backend-diagnostic.c Wed Feb 12 08:46:15 2014
@@ -4,17 +4,17 @@
 // _PROMOTE_: Promote warning to error.
 // _IGNORE_: Drop backend warning.
 //
-// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -S -o - -triple=i386-apple-darwin 2> %t.err
+// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -mllvm -no-integrated-as -S -o - -triple=i386-apple-darwin 2> %t.err
 // RUN: FileCheck < %t.err %s --check-prefix=REGULAR --check-prefix=ASM
-// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -S -o - -triple=i386-apple-darwin -Werror=frame-larger-than 2> %t.err
+// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -mllvm -no-integrated-as -S -o - -triple=i386-apple-darwin -Werror=frame-larger-than 2> %t.err
 // RUN: FileCheck < %t.err %s --check-prefix=PROMOTE --check-prefix=ASM
-// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -S -o - -triple=i386-apple-darwin -Wno-frame-larger-than 2> %t.err
+// RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -mllvm -no-integrated-as -S -o - -triple=i386-apple-darwin -Wno-frame-larger-than 2> %t.err
 // RUN: FileCheck < %t.err %s --check-prefix=IGNORE --check-prefix=ASM
 //
 // Currently the stack size reporting cannot be checked with -verify because
 //  no source location is attached to the diagnostic. Therefore do not emit
 // them for the -verify test for now.
-// RUN: %clang_cc1 %s -S -o - -triple=i386-apple-darwin -verify
+// RUN: %clang_cc1 %s -S -o - -triple=i386-apple-darwin -verify -mllvm -no-integrated-as
 
 extern void doIt(char *);
 





More information about the cfe-commits mailing list