diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 18:25:55 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 18:25:55 +0000 |
commit | c1a6e302749ce9609b4cbdcb8a3f10c5ccdd90d6 (patch) | |
tree | 386ee665cd7173097c605c1c61adf65785e9cec2 | |
parent | d7d228792874b78f3c691fa174e7a31f30250fba (diff) |
Use opt instead of gccas.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35168 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c b/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c index 0b49f52b1f..d7d03badfd 100644 --- a/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c +++ b/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c @@ -1,4 +1,5 @@ -// RUN: %llvmgcc -std=c99 %s -S -o - | gccas -o /dev/null +// RUN: %llvmgcc -std=c99 %s -S -o - | llvm-as | \ +// RUN: opt -std-compile-opts -disable-output // PR580 int X, Y; |