diff options
Diffstat (limited to 'compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp')
| -rw-r--r-- | compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp b/compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp index 8fafe7eac05..922d3c92538 100644 --- a/compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp +++ b/compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp @@ -5,7 +5,6 @@ unsigned char NotABool = 123; int main(int argc, char **argv) { bool *p = (bool*)&NotABool; - // FIXME: Provide a better source location here. - // CHECK: bool.exe:0x{{[0-9a-f]*}}: runtime error: load of value 123, which is not a valid value for type 'bool' + // CHECK: bool.cpp:9:10: runtime error: load of value 123, which is not a valid value for type 'bool' return *p; } |

