~ubuntu-branches/ubuntu/maverick/clamav/maverick-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/Target/ARM/ARMFrameInfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran, Stephen Gran, Michael Tautschnig
  • Date: 2010-04-26 21:41:18 UTC
  • mfrom: (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100426214118-i6lo606wnh7ywfj6
Tags: 0.96+dfsg-4
[ Stephen Gran ]
* Fixed typo in clamav-milter's postinst

[ Michael Tautschnig ]
* Fixed typo in clamav-freshclam's postinst (closes: #579271)
* Debconf translation updates
  - Portuguese (closes: #579068)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//===-- ARMTargetFrameInfo.h - Define TargetFrameInfo for ARM ---*- C++ -*-===//
 
2
//
 
3
//                     The LLVM Compiler Infrastructure
 
4
//
 
5
// This file is distributed under the University of Illinois Open Source
 
6
// License. See LICENSE.TXT for details.
 
7
//
 
8
//===----------------------------------------------------------------------===//
 
9
//
 
10
//
 
11
//
 
12
//===----------------------------------------------------------------------===//
 
13
 
 
14
#ifndef ARM_FRAMEINFO_H
 
15
#define ARM_FRAMEINFO_H
 
16
 
 
17
#include "ARM.h"
 
18
#include "ARMSubtarget.h"
 
19
#include "llvm/Target/TargetFrameInfo.h"
 
20
 
 
21
namespace llvm {
 
22
 
 
23
class ARMFrameInfo : public TargetFrameInfo {
 
24
public:
 
25
  explicit ARMFrameInfo(const ARMSubtarget &ST)
 
26
    : TargetFrameInfo(StackGrowsDown, ST.getStackAlignment(), 0, 4) {
 
27
  }
 
28
};
 
29
 
 
30
} // End llvm namespace
 
31
 
 
32
#endif