remove dead code

llvm-svn: 41470
This commit is contained in:
Chris Lattner 2007-08-26 23:02:57 +00:00
parent 1916b88723
commit c1045b1a69
2 changed files with 0 additions and 5 deletions

View File

@ -174,10 +174,6 @@ RValue CodeGenFunction::EmitLoadOfOCUElementLValue(LValue LV,
}
RValue CodeGenFunction::EmitLoadOfLValue(const Expr *E) {
return EmitLoadOfLValue(EmitLValue(E), E->getType());
}
/// EmitStoreThroughLValue - Store the specified rvalue into the specified
/// lvalue, where both are guaranteed to the have the same type, and that type

View File

@ -301,7 +301,6 @@ public:
/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
/// this method emits the address of the lvalue, then loads the result as an
/// rvalue, returning the rvalue.
RValue EmitLoadOfLValue(const Expr *E);
RValue EmitLoadOfLValue(LValue V, QualType LVType);
RValue EmitLoadOfOCUElementLValue(LValue V, QualType LVType);