You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a new pass using LLVM-13 from Homebrew and I got a strange bug that whenever I call Constant::signExtend the pass crashes with opt invoked. However, when I use Linux x64 (also LLVM-14) it is not an issue. I did not find any recent commit on LLVM's Constant::signExtend so I guess it is either related to Homebrew or M1?
I am developing a new pass using LLVM-13 from Homebrew and I got a strange bug that whenever I call
Constant::signExtend
the pass crashes withopt
invoked. However, when I use Linux x64 (also LLVM-14) it is not an issue. I did not find any recent commit on LLVM'sConstant::signExtend
so I guess it is either related to Homebrew or M1?To reproduce this bug:
Create a file
a.c
clang -O0 -Xclang -disable-O0-optnone -emit-llvm -S a.c opt -load-pass-plugin=mkint/MiniKintPass.dylib -passes=mkint-pass -S a.ll # crash
The text was updated successfully, but these errors were encountered: