Handle dereferences of function pointers (which return a handle to the function).

llvm-svn: 50246
This commit is contained in:
Ted Kremenek 2008-04-25 01:56:50 +00:00
parent 2e5092320e
commit 99131c9f5a
1 changed files with 3 additions and 0 deletions

View File

@ -212,6 +212,9 @@ RVal ValueStateManager::GetRVal(ValueState* St, LVal LV, QualType T) {
return UnknownVal();
}
case lval::FuncValKind:
return LV;
case lval::StringLiteralValKind:
// FIXME: Implement better support for fetching characters from strings.
return UnknownVal();