diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-05 01:41:37 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-05 01:41:37 +0000 |
commit | a89fb0f170f079a7fea529597f79a82a7944e49c (patch) | |
tree | 3f1456d479ef5bb8a9a63b22e4617299020ca99c | |
parent | 5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c (diff) |
Remove redundant semicolons to fix -pedantic-errors build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163190 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Hexagon/HexagonMachineScheduler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Hexagon/HexagonMachineScheduler.h b/lib/Target/Hexagon/HexagonMachineScheduler.h index 0f4c5de490..7d8cc3d24e 100644 --- a/lib/Target/Hexagon/HexagonMachineScheduler.h +++ b/lib/Target/Hexagon/HexagonMachineScheduler.h @@ -382,8 +382,8 @@ public: return RegionCriticalPSets; } - VLIWResourceModel *getTopResourceModel() { return TopResourceModel; }; - VLIWResourceModel *getBotResourceModel() { return BotResourceModel; }; + VLIWResourceModel *getTopResourceModel() { return TopResourceModel; } + VLIWResourceModel *getBotResourceModel() { return BotResourceModel; } /// getIssueWidth - Return the max instructions per scheduling group. unsigned getIssueWidth() const { |