mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-14 15:57:47 +00:00
![Dimitry Andric](/assets/img/avatar_default.png)
Summary: There are a number of files in the tree which have been accidentally checked in with DOS line endings. Convert these to native line endings. There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those. Reviewers: joerg, aaron.ballman Subscribers: aaron.ballman, sanjoy, dsanders, llvm-commits Differential Revision: http://reviews.llvm.org/D15848 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256707 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
367 B
C++
12 lines
367 B
C++
#define M1 Value1
|
|
#include "dwarfdump-macro.h"
|
|
#define M2(x, y) ((x)+(y)* Value2)
|
|
|
|
// Built with GCC
|
|
// $ mkdir -p /tmp/dbginfo
|
|
// $ cp dwarfdump-macro.cc /tmp/dbginfo
|
|
// $ cp dwarfdump-macro.h /tmp/dbginfo
|
|
// $ cp dwarfdump-macro-cmd.h /tmp/dbginfo
|
|
// $ cd /tmp/dbginfo
|
|
// $ g++ -c -g3 -O0 -DM3=Value3 -include dwarfdump-macro-cmd.h dwarfdump-macro.cc -o <output>
|