From: Rafael Espindola Date: Thu, 16 Oct 2014 20:00:22 +0000 (+0000) Subject: Update for llvm change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aca883cdb895cbead0f4feef922f918c53d998ab;p=clang Update for llvm change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219952 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c b/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c index dd1acc54bc..0698601ad1 100644 --- a/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c +++ b/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | \ -// RUN: opt -std-compile-opts -disable-output +// RUN: opt -O3 -disable-output // PR580 int X, Y; diff --git a/test/CodeGen/2005-09-24-AsmUserPrefix.c b/test/CodeGen/2005-09-24-AsmUserPrefix.c index 16283130be..d0e5bd1c3a 100644 --- a/test/CodeGen/2005-09-24-AsmUserPrefix.c +++ b/test/CodeGen/2005-09-24-AsmUserPrefix.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -emit-llvm -o - | opt -std-compile-opts | llc | \ +// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \ // RUN: not grep _foo2 void foo() __asm__("foo2");