summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-10-14 05:50:43 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-10-14 05:50:43 +0000
commit35e83cc970e2ed99c8087e0c6b99f8a3618c279b (patch)
tree14ae5a1a894b7179fbb8827e256acdf670a2aa16 /utils/TableGen/CodeGenTarget.h
parent9c07866ef861e072395306e9811c329c7fe5bbe8 (diff)
downloadllvm-35e83cc970e2ed99c8087e0c6b99f8a3618c279b.tar.gz
llvm-35e83cc970e2ed99c8087e0c6b99f8a3618c279b.tar.bz2
llvm-35e83cc970e2ed99c8087e0c6b99f8a3618c279b.tar.xz
* Add option to read isLittleEndianEncoding for InstrInfo classes
* Doxygen-ify some function comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.h')
-rw-r--r--utils/TableGen/CodeGenTarget.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
index 9b338d88c9..d74e8872a3 100644
--- a/utils/TableGen/CodeGenTarget.h
+++ b/utils/TableGen/CodeGenTarget.h
@@ -96,6 +96,10 @@ public:
/// getPHIInstruction - Return the designated PHI instruction.
///
const CodeGenInstruction &getPHIInstruction() const;
+
+ /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
+ ///
+ bool isLittleEndianEncoding() const;
};
} // End llvm namespace