Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: src/IceInstARM32.h

Issue 1488913002: fix doxygen brief in subzero header files (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make changes suggested by stichnot Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===// 1 //===- subzero/src/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
11 /// This file declares the InstARM32 and OperandARM32 classes and their 11 /// \brief Declares the InstARM32 and OperandARM32 classes and their
Jim Stichnoth 2015/12/02 21:50:38 Reflow to 80-col.
rkotlerimgtec 2015/12/02 23:58:14 Done.
12 /// subclasses. This represents the machine instructions and operands used for 12 /// subclasses.
13 /// ARM32 code selection. 13 ///
14 /// This represents the machine instructions and operands used for ARM32 code
15 /// selection.
14 /// 16 ///
15 //===----------------------------------------------------------------------===// 17 //===----------------------------------------------------------------------===//
16 18
17 #ifndef SUBZERO_SRC_ICEINSTARM32_H 19 #ifndef SUBZERO_SRC_ICEINSTARM32_H
18 #define SUBZERO_SRC_ICEINSTARM32_H 20 #define SUBZERO_SRC_ICEINSTARM32_H
19 21
20 #include "IceConditionCodesARM32.h" 22 #include "IceConditionCodesARM32.h"
21 #include "IceDefs.h" 23 #include "IceDefs.h"
22 #include "IceInst.h" 24 #include "IceInst.h"
23 #include "IceInstARM32.def" 25 #include "IceInstARM32.def"
(...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 // default implementations. Without this, there is the possibility of ODR 1321 // default implementations. Without this, there is the possibility of ODR
1320 // violations and link errors. 1322 // violations and link errors.
1321 1323
1322 template <> void InstARM32Ldr::emit(const Cfg *Func) const; 1324 template <> void InstARM32Ldr::emit(const Cfg *Func) const;
1323 template <> void InstARM32Movw::emit(const Cfg *Func) const; 1325 template <> void InstARM32Movw::emit(const Cfg *Func) const;
1324 template <> void InstARM32Movt::emit(const Cfg *Func) const; 1326 template <> void InstARM32Movt::emit(const Cfg *Func) const;
1325 1327
1326 } // end of namespace Ice 1328 } // end of namespace Ice
1327 1329
1328 #endif // SUBZERO_SRC_ICEINSTARM32_H 1330 #endif // SUBZERO_SRC_ICEINSTARM32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698