Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //===-- llvm/Support/DataTypes.h - Define fixed size types ------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // Due to layering constraints (Support depends on llvm-c) this is a thin
  10. // wrapper around the implementation that lives in llvm-c, though most clients
  11. // can/should think of this as being provided by Support for simplicity (not
  12. // many clients are aware of their dependency on llvm-c).
  13. //
  14. //===----------------------------------------------------------------------===//
  15.  
  16. #ifndef LLVM_SUPPORT_DATATYPES_H
  17. #define LLVM_SUPPORT_DATATYPES_H
  18.  
  19. #include "llvm-c/DataTypes.h"
  20.  
  21. #endif // LLVM_SUPPORT_DATATYPES_H
  22.