[llvm-commits] [llvm] r126679 - /llvm/trunk/include/llvm/Target/TargetLowering.h
Owen Anderson
resistor at mac.com
Mon Feb 28 11:58:06 PST 2011
Author: resistor
Date: Mon Feb 28 13:58:06 2011
New Revision: 126679
URL: http://llvm.org/viewvc/llvm-project?rev=126679&view=rev
Log:
Fix warning when building with clang++.
Modified:
llvm/trunk/include/llvm/Target/TargetLowering.h
Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=126679&r1=126678&r2=126679&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Mon Feb 28 13:58:06 2011
@@ -1260,7 +1260,7 @@
}
/// 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
More information about the llvm-commits
mailing list