mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
transform: update stringequal test to opaque pointers
This commit is contained in:
committed by
Damian Gryski
parent
af247e27ff
commit
e0f3333cc3
+3
-3
@@ -3,15 +3,15 @@ target triple = "armv7m-none-eabi"
|
||||
|
||||
@zeroString = constant [0 x i8] zeroinitializer
|
||||
|
||||
declare i1 @runtime.stringEqual(i8*, i32, i8*, i32, i8*)
|
||||
declare i1 @runtime.stringEqual(ptr, i32, ptr, i32, ptr)
|
||||
|
||||
define i1 @main.stringCompareEqualConstantZero(i8* %s1.data, i32 %s1.len, i8* %context) {
|
||||
define i1 @main.stringCompareEqualConstantZero(ptr %s1.data, i32 %s1.len, ptr %context) {
|
||||
entry:
|
||||
%0 = icmp eq i32 %s1.len, 0
|
||||
ret i1 %0
|
||||
}
|
||||
|
||||
define i1 @main.stringCompareUnequalConstantZero(i8* %s1.data, i32 %s1.len, i8* %context) {
|
||||
define i1 @main.stringCompareUnequalConstantZero(ptr %s1.data, i32 %s1.len, ptr %context) {
|
||||
entry:
|
||||
%0 = icmp eq i32 %s1.len, 0
|
||||
%1 = xor i1 %0, true
|
||||
|
||||
Reference in New Issue
Block a user