Skip to content

Commit 0ecae48

Browse files
nikicIanWood1
authored andcommitted
[InstCombine] Drop integral/non-integral check prefixes from test (NFC)
The behavior is not affected by non-integral pointers. Keep the RUN lines but drop the prefixes.
1 parent d3a09f4 commit 0ecae48

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/test/Transforms/InstCombine/ptrtoint-nullgep.ll

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
; Note: the LLParser already does some constant folding, check that output first:
44
; RUN: opt -passes=verify -S < %s | FileCheck %s --check-prefixes=ALL,LLPARSER
55
; We should be able to fold almost everything in InstSimplify other than the final test which requries InstCombine
6-
; RUN: opt -S -passes=instsimplify < %s | FileCheck %s --allow-unused-prefixes --check-prefixes=ALL,CHECK,INTEGRAL,INSTSIMPLIFY,INTEGRAL-INSTSIMPLIFY
7-
; RUN: opt -S -passes=instcombine < %s | FileCheck %s --allow-unused-prefixes --check-prefixes=ALL,CHECK,INTEGRAL,INSTCOMBINE,INTEGRAL-INSTCOMBINE
6+
; RUN: opt -S -passes=instsimplify < %s | FileCheck %s --check-prefixes=ALL,CHECK,INSTSIMPLIFY
7+
; RUN: opt -S -passes=instcombine < %s | FileCheck %s --check-prefixes=ALL,CHECK,INSTCOMBINE
88
; Non-integral pointers limit certain transformations on pointers:
99
; RUN: sed -e 's/p:64:64:64:64/p:64:64:64:64-ni:1/g' %s | opt -S -passes=instsimplify | \
10-
; RUN: FileCheck %s --allow-unused-prefixes --check-prefixes=ALL,CHECK,NONINTEGRAL,INSTSIMPLIFY,NONINTEGRAL-INSTSIMPLIFY
10+
; RUN: FileCheck %s --check-prefixes=ALL,CHECK,INSTSIMPLIFY
1111
; RUN: sed -e 's/p:64:64:64:64/p:64:64:64:64-ni:1/g' %s | opt -S -passes=instcombine | \
12-
; RUN: FileCheck %s --allow-unused-prefixes --check-prefixes=ALL,CHECK,NONINTEGRAL,INSTCOMBINE,NONINTEGRAL-INSTCOMBINE
12+
; RUN: FileCheck %s --check-prefixes=ALL,CHECK,INSTCOMBINE
1313
target datalayout = "p:64:64:64:64"
1414

1515
declare void @use_i64(i64)

0 commit comments

Comments
 (0)