projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a24c397
)
DebugInfo: enumerator values returned as int64 as they are stored
author
David Blaikie
<dblaikie@gmail.com>
Mon, 24 Jun 2013 07:11:08 +0000
(07:11 +0000)
committer
David Blaikie
<dblaikie@gmail.com>
Mon, 24 Jun 2013 07:11:08 +0000
(07:11 +0000)
llvm-svn: 184694
llvm/include/llvm/DebugInfo.h
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/DebugInfo.h
b/llvm/include/llvm/DebugInfo.h
index
01ff634
..
947f4a6
100644
(file)
--- a/
llvm/include/llvm/DebugInfo.h
+++ b/
llvm/include/llvm/DebugInfo.h
@@
-222,7
+222,7
@@
namespace llvm {
explicit DIEnumerator(const MDNode *N = 0) : DIDescriptor(N) {}
StringRef getName() const { return getStringField(1); }
-
uint64_t getEnumValue() const { return getU
Int64Field(2); }
+
int64_t getEnumValue() const { return get
Int64Field(2); }
bool Verify() const;
};