diff options
Diffstat (limited to 'test/Assembler/ConstantExprFoldCast.llx')
-rw-r--r-- | test/Assembler/ConstantExprFoldCast.llx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/Assembler/ConstantExprFoldCast.llx b/test/Assembler/ConstantExprFoldCast.llx index 38763a7..34e5654 100644 --- a/test/Assembler/ConstantExprFoldCast.llx +++ b/test/Assembler/ConstantExprFoldCast.llx @@ -1,9 +1,6 @@ ; This test checks to make sure that constant exprs fold in some simple situations -; RUN: if as < %s | dis | grep cast -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | dis | grep-not cast %A = global int* cast (sbyte* null to int*) ; Cast null -> fold %B = global int** cast (int** %A to int**) ; Cast to same type -> fold |