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

Side by Side Diff: config/asmcfi.m4

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months 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
« no previous file with comments | « config/acx.m4 ('k') | config/math.m4 » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ;; Cribbed from libffi
2
3 AC_DEFUN([GCC_AS_CFI_PSEUDO_OP],
4 [AC_CACHE_CHECK([assembler .cfi pseudo-op support],
5 gcc_cv_as_cfi_pseudo_op, [
6 gcc_cv_as_cfi_pseudo_op=unknown
7 AC_TRY_COMPILE([asm (".cfi_startproc\n\t.cfi_endproc");],,
8 [gcc_cv_as_cfi_pseudo_op=yes],
9 [gcc_cv_as_cfi_pseudo_op=no])
10 ])
11 if test "x$gcc_cv_as_cfi_pseudo_op" = xyes; then
12 AC_DEFINE(HAVE_AS_CFI_PSEUDO_OP, 1,
13 [Define if your assembler supports .cfi_* directives.])
14 fi
15 ])
OLDNEW
« no previous file with comments | « config/acx.m4 ('k') | config/math.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698