diff options
author | Owen Anderson <resistor@mac.com> | 2011-02-28 19:58:06 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-02-28 19:58:06 +0000 |
commit | 1401dbd211817db037a10d0f4bc02a29c737948e (patch) | |
tree | 5b9842c2137c9b468729aaaf58f879984d625280 | |
parent | 79246322a6103e5435464e6e194f040157e13ba2 (diff) | |
download | bcm5719-llvm-1401dbd211817db037a10d0f4bc02a29c737948e.tar.gz bcm5719-llvm-1401dbd211817db037a10d0f4bc02a29c737948e.zip |
Fix warning when building with clang++.
llvm-svn: 126679
-rw-r--r-- | llvm/include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index 9079b5b4630..42c330f4f2f 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/include/llvm/Target/TargetLowering.h @@ -1260,7 +1260,7 @@ public: } /// HandleByVal - Target-specific cleanup for formal ByVal parameters. - virtual void HandleByVal(CCState *) const {}; + virtual void HandleByVal(CCState *) const {} /// CanLowerReturn - This hook should be implemented to check whether the /// return values described by the Outs array can fit into the return |