diff options
author | Mike Stump <mrs@apple.com> | 2009-11-03 16:11:57 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-03 16:11:57 +0000 |
commit | 519202d315e3f74f42d8a1dea7b2f23dee1a66f0 (patch) | |
tree | a092d1001f581995e45120d39bff1c1d01873a99 | |
parent | 9d645b389a18ec1a8fb9ae8fb81060d7eee55087 (diff) |
Fix documentation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85901 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGValue.h b/lib/CodeGen/CGValue.h index 2a06f51f66..fa77471bce 100644 --- a/lib/CodeGen/CGValue.h +++ b/lib/CodeGen/CGValue.h @@ -47,7 +47,7 @@ public: bool isVolatileQualified() const { return Volatile; } - /// getScalar() - Return the Value* of this scalar value. + /// getScalarVal() - Return the Value* of this scalar value. llvm::Value *getScalarVal() const { assert(isScalar() && "Not a scalar!"); return V1; |