From 87008a05b6eecf135fce310c8e281812523d04cb Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Sun, 13 Jul 2014 18:43:39 +0200 Subject: [PATCH] util: LLVM test code compilation fix This change removes an unnecessary "#ifndef __puma" from the LLVM disassembler test code and fixes compilation with the latest AspectC++ binaries. Change-Id: Ibe835a4a6df69255555c668985f15b9cf8fb82b4 --- src/core/util/llvmdisassembler/testing/llvmDisTest.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/util/llvmdisassembler/testing/llvmDisTest.cc b/src/core/util/llvmdisassembler/testing/llvmDisTest.cc index f2a1fc59..9f02ab12 100644 --- a/src/core/util/llvmdisassembler/testing/llvmDisTest.cc +++ b/src/core/util/llvmdisassembler/testing/llvmDisTest.cc @@ -1,4 +1,3 @@ -#ifndef __puma #include "../LLVMDisassembler.hpp" using namespace llvm; @@ -69,4 +68,3 @@ int main(int argc, char* argv[]) { std::cout << std::endl; } } -#endif