Deleted Added
full compact
Triple.h (194612) Triple.h (195340)
1//===-- llvm/ADT/Triple.h - Target triple helper class ----------*- 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//===----------------------------------------------------------------------===//

--- 39 unchanged lines hidden (view full) ---

48 };
49 enum OSType {
50 UnknownOS,
51
52 AuroraUX,
53 Darwin,
54 DragonFly,
55 FreeBSD,
1//===-- llvm/ADT/Triple.h - Target triple helper class ----------*- 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//===----------------------------------------------------------------------===//

--- 39 unchanged lines hidden (view full) ---

48 };
49 enum OSType {
50 UnknownOS,
51
52 AuroraUX,
53 Darwin,
54 DragonFly,
55 FreeBSD,
56 Linux
56 Linux,
57 OpenBSD
57 };
58
59private:
60 std::string Data;
61
62 /// The parsed arch type (or InvalidArch if uninitialized).
63 mutable ArchType Arch;
64

--- 141 unchanged lines hidden ---
58 };
59
60private:
61 std::string Data;
62
63 /// The parsed arch type (or InvalidArch if uninitialized).
64 mutable ArchType Arch;
65

--- 141 unchanged lines hidden ---