TargetOpcodes.h: Don't mark header functions as file local
authorDavid Blaikie <dblaikie@gmail.com>
Tue, 24 Oct 2017 21:29:19 +0000 (21:29 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Tue, 24 Oct 2017 21:29:19 +0000 (21:29 +0000)
llvm-svn: 316514

llvm/include/llvm/Target/TargetOpcodes.h

index 33df133..ca01a3a 100644 (file)
@@ -28,13 +28,13 @@ enum {
 
 /// Check whether the given Opcode is a generic opcode that is not supposed
 /// to appear after ISel.
-static inline bool isPreISelGenericOpcode(unsigned Opcode) {
+inline bool isPreISelGenericOpcode(unsigned Opcode) {
   return Opcode >= TargetOpcode::PRE_ISEL_GENERIC_OPCODE_START &&
          Opcode <= TargetOpcode::PRE_ISEL_GENERIC_OPCODE_END;
 }
 
 /// Check whether the given Opcode is a target-specific opcode.
-static inline bool isTargetSpecificOpcode(unsigned Opcode) {
+inline bool isTargetSpecificOpcode(unsigned Opcode) {
   return Opcode > TargetOpcode::PRE_ISEL_GENERIC_OPCODE_END;
 }
 } // end namespace llvm