diff options
| author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-08 22:51:23 +0000 |
|---|---|---|
| committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-08 22:51:23 +0000 |
| commit | b5e6eed4be00564e022fea3f1bc684533fd38607 (patch) | |
| tree | bb4f1e4c609d5bf95ea1eaff57e9cf3d4a843ea8 /lib/Target/X86/X86FloatingPoint.cpp | |
| parent | 01958a76702eae10fa2ccf7e8df292ad55f4daca (diff) | |
| download | external_llvm-b5e6eed4be00564e022fea3f1bc684533fd38607.zip external_llvm-b5e6eed4be00564e022fea3f1bc684533fd38607.tar.gz external_llvm-b5e6eed4be00564e022fea3f1bc684533fd38607.tar.bz2 | |
Reapply r105521, this time appending "LLU" to 64 bit
immediates to avoid breaking the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86FloatingPoint.cpp')
| -rw-r--r-- | lib/Target/X86/X86FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86FloatingPoint.cpp b/lib/Target/X86/X86FloatingPoint.cpp index 93460ef..5fe21ac 100644 --- a/lib/Target/X86/X86FloatingPoint.cpp +++ b/lib/Target/X86/X86FloatingPoint.cpp @@ -232,7 +232,7 @@ bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) { for (MachineBasicBlock::iterator I = BB.begin(); I != BB.end(); ++I) { MachineInstr *MI = I; - unsigned Flags = MI->getDesc().TSFlags; + uint64_t Flags = MI->getDesc().TSFlags; unsigned FPInstClass = Flags & X86II::FPTypeMask; if (MI->isInlineAsm()) |
