mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-02 04:39:35 +00:00
fix a FileCheck bug where:
; CHECK: foo ; CHECK-NOT: foo ; CHECK: bar would always fail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82424 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
06e483dae0
commit
8111576521
@ -73,7 +73,6 @@ F:
|
|||||||
|
|
||||||
; CHECK: @coerce_mustalias4
|
; CHECK: @coerce_mustalias4
|
||||||
; CHECK: %A = load i32* %P
|
; CHECK: %A = load i32* %P
|
||||||
; CHECK: bitcast
|
|
||||||
; CHECK-NOT: load
|
; CHECK-NOT: load
|
||||||
; CHECK: ret float
|
; CHECK: ret float
|
||||||
; CHECK: F:
|
; CHECK: F:
|
||||||
|
@ -361,10 +361,10 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Otherwise, everything is good. Remember this as the last match and move
|
// Otherwise, everything is good. Step over the matched text and remember
|
||||||
// on to the next one.
|
// the position after the match as the end of the last match.
|
||||||
LastMatch = Buffer.data();
|
|
||||||
Buffer = Buffer.substr(CheckStr.Str.size());
|
Buffer = Buffer.substr(CheckStr.Str.size());
|
||||||
|
LastMatch = Buffer.data();
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user