| Index: src/IceIntrinsics.cpp
|
| diff --git a/src/IceIntrinsics.cpp b/src/IceIntrinsics.cpp
|
| index 1dc25cc44626de24c8ada0494c2635177259f47f..bbbf08644463d1f5102ea276a2a0dcf20d5b3f79 100644
|
| --- a/src/IceIntrinsics.cpp
|
| +++ b/src/IceIntrinsics.cpp
|
| @@ -8,8 +8,8 @@
|
| //===----------------------------------------------------------------------===//
|
| ///
|
| /// \file
|
| -/// This file implements the Intrinsics utilities for matching and
|
| -/// then dispatching by name.
|
| +/// This file implements the Intrinsics utilities for matching and then
|
| +/// dispatching by name.
|
| ///
|
| //===----------------------------------------------------------------------===//
|
|
|
| @@ -33,8 +33,8 @@ namespace {
|
| #define INTRIN(ID, SE, RT) \
|
| { Intrinsics::ID, Intrinsics::SE, Intrinsics::RT }
|
|
|
| -// Build list of intrinsics with their attributes and expected prototypes.
|
| -// List is sorted alphabetically.
|
| +// Build list of intrinsics with their attributes and expected prototypes. List
|
| +// is sorted alphabetically.
|
| const struct IceIntrinsicsEntry_ {
|
| Intrinsics::FullIntrinsicInfo Info;
|
| const char *IntrinsicName;
|
| @@ -279,8 +279,8 @@ bool Intrinsics::isMemoryOrderValid(IntrinsicID ID, uint64_t Order,
|
| case AtomicRMW:
|
| return true;
|
| case AtomicCmpxchg:
|
| - // Reject orderings that are disallowed by C++11 as invalid
|
| - // combinations for cmpxchg.
|
| + // Reject orderings that are disallowed by C++11 as invalid combinations
|
| + // for cmpxchg.
|
| switch (OrderOther) {
|
| case MemoryOrderRelaxed:
|
| case MemoryOrderConsume:
|
|
|