summaryrefslogtreecommitdiffstats
path: root/tester/covoar/Target_riscv.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-10-20 10:11:34 -0400
committerJoel Sherrill <joel@rtems.org>2021-12-10 11:05:16 -0600
commit361e30450c5a6c8c3c18bac041ac1afc15f76d02 (patch)
tree0ed34757e7453aa74a80d01a56697630128827ac /tester/covoar/Target_riscv.h
parentTargetFactory.cc: Convert to C++ (diff)
downloadrtems-tools-361e30450c5a6c8c3c18bac041ac1afc15f76d02.tar.bz2
Target: Convert to C++
Diffstat (limited to 'tester/covoar/Target_riscv.h')
-rw-r--r--tester/covoar/Target_riscv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tester/covoar/Target_riscv.h b/tester/covoar/Target_riscv.h
index 64a63d4..1442f69 100644
--- a/tester/covoar/Target_riscv.h
+++ b/tester/covoar/Target_riscv.h
@@ -67,8 +67,8 @@ namespace Target {
* @return Returns True if the instruction is nop, False otherwise.
*/
bool isNopLine(
- const char* const line,
- int& size
+ const std::string& line,
+ int& size
);
/*!
@@ -80,7 +80,7 @@ namespace Target {
*/
bool isBranch(
- const char* const instruction
+ const std::string& instruction
);
private: