diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-03-09 07:45:21 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-03-09 07:45:21 +0000 |
commit | 2dac962864bd2f2dc53ee63e65f4d88258d2234f (patch) | |
tree | 643bce3c85e9f8985918b30e089c04f59e32dd31 /llvm/lib/Target/X86/X86FloatingPoint.cpp | |
parent | 1662013a4337864a044ecfa8a452ce9535b6f51b (diff) | |
download | bcm5719-llvm-2dac962864bd2f2dc53ee63e65f4d88258d2234f.tar.gz bcm5719-llvm-2dac962864bd2f2dc53ee63e65f4d88258d2234f.zip |
Use uint16_t to store opcodes in static tables in X86 backend.
llvm-svn: 152391
Diffstat (limited to 'llvm/lib/Target/X86/X86FloatingPoint.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FloatingPoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86FloatingPoint.cpp b/llvm/lib/Target/X86/X86FloatingPoint.cpp index 32de194725c..7153f01df69 100644 --- a/llvm/lib/Target/X86/X86FloatingPoint.cpp +++ b/llvm/lib/Target/X86/X86FloatingPoint.cpp @@ -570,8 +570,8 @@ void FPS::finishBlockStack() { namespace { struct TableEntry { - unsigned from; - unsigned to; + uint16_t from; + uint16_t to; bool operator<(const TableEntry &TE) const { return from < TE.from; } friend bool operator<(const TableEntry &TE, unsigned V) { return TE.from < V; |