Commit 38dfff67 authored by Sandipan Das's avatar Sandipan Das

Set USDT argument constraint for all architectures

This sets the USDT argument constraint for all architectures
rather than just restricting it to powerpc and x86 variants.
However, the other architectures might still need additional
argument parsing support.
Signed-off-by: default avatarSandipan Das <sandipan@linux.vnet.ibm.com>
parent 422db709
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef FOLLY_SDT_ARG_CONSTRAINT #ifndef FOLLY_SDT_ARG_CONSTRAINT
#if defined(__powerpc64__) || defined(__powerpc__) #if defined(__powerpc64__) || defined(__powerpc__)
#define FOLLY_SDT_ARG_CONSTRAINT "nQr" #define FOLLY_SDT_ARG_CONSTRAINT "nQr"
#elif defined(__x86_64__) || defined(__i386__) #else
#define FOLLY_SDT_ARG_CONSTRAINT "nor" #define FOLLY_SDT_ARG_CONSTRAINT "nor"
#endif #endif
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment