[PATCH] D144412: [NFC] Fix missing colon in CHECK directives
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 20 11:09:13 PST 2023
spatel added inline comments.
================
Comment at: llvm/test/Transforms/InstCombine/2008-01-06-VoidCast.ll:9
; CHECK-LABEL: @g(
-; CHECK-NEXT %x = call i32 @f(i32 %y) ; <i32> [#uses=1]
+; CHECK-NEXT: %x = call i32 @f(i32 %y) ; <i32> [#uses=1]
%x = call i32 @f( i32 %y ) ; <i32> [#uses=1]
----------------
Not sure if that ancient 'uses' comment passes on any other target, but it was failing on macOS.
I updated with:
36014a71ebd0
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144412/new/
https://reviews.llvm.org/D144412
More information about the llvm-commits
mailing list