diff options
author | Frank Busse <bb0xfb@gmail.com> | 2022-06-14 11:27:30 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-06-30 10:02:30 +0100 |
commit | 3a8b3bb1e8f8601e8a5598a652fad6d8d510fb30 (patch) | |
tree | 4f887b7925ed52ff01b03dfbb8397ec099447601 /test | |
parent | 6cc8ee707c1b4337120aa2972e2ad13a4861bbc3 (diff) | |
download | klee-3a8b3bb1e8f8601e8a5598a652fad6d8d510fb30.tar.gz |
rename CallSite to CallBase
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2016-11-24-bitcast-weak-alias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regression/2016-11-24-bitcast-weak-alias.c b/test/regression/2016-11-24-bitcast-weak-alias.c index 8fffa4a5..4bbb3f95 100644 --- a/test/regression/2016-11-24-bitcast-weak-alias.c +++ b/test/regression/2016-11-24-bitcast-weak-alias.c @@ -4,8 +4,8 @@ // RUN: %klee --output-dir=%t.klee-out -exit-on-error -search=nurs:covnew %t.bc DUMMY_ARG >%t1.log 2>&1 // RUN: FileCheck -input-file=%t1.log %s -// This test case is designed to cover code in `klee::getDirectCallTarget(CallSite)`. -// In particular it designed to test the case where a bitcasted function call, calls +// This test case is designed to cover code in `klee::getDirectCallTarget(CallBase)`. +// In particular, it's designed to test the case where a bitcasted function call calls // a weak alias. struct v1 { int c; |